* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #e74c3c;
}

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    padding: 5px 12px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    padding: 20px;
    gap: 15px;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    font-weight: 500;
}

.ad-disclosure-mobile {
    font-size: 12px;
    color: #95a5a6;
    padding: 8px;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #4a5568;
}

.problem-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-layout-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 22px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a5568;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-section {
    padding: 90px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.insight-section h3 {
    font-size: 38px;
    margin-bottom: 25px;
    text-align: center;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 20px;
}

.feature-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    min-width: 250px;
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    font-size: 16px;
    color: #ecf0f1;
}

.collections-preview {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.collections-preview h3 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 50px;
}

.collection-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

.collection-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.collection-image {
    background-color: #bdc3c7;
}

.collection-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.collection-info {
    padding: 30px;
}

.collection-info h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.collection-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a5568;
}

.collection-price {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 20px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.testimonial-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.testimonial-section h3 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    min-width: 280px;
}

.testimonial p {
    font-size: 17px;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

.benefits-section {
    padding: 90px 20px;
    background-color: #ecf0f1;
}

.benefits-list {
    list-style: none;
    margin-top: 25px;
}

.benefits-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.form-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.form-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #c0392b;
}

.final-cta-section {
    padding: 90px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.final-cta-section h3 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.7;
    border-top: 2px solid #dfe6e9;
    padding-top: 30px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

.services-section {
    padding: 80px 20px;
}

.service-item {
    margin-bottom: 80px;
}

.service-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-layout-reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: #ecf0f1;
}

.service-image-large img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5568;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 18px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    margin: 25px 0;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.about-content {
    padding: 80px 20px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-content h3 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a5568;
}

.about-image-section {
    margin: 60px 0;
    background-color: #bdc3c7;
}

.about-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.principles-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.principle-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    min-width: 250px;
}

.principle-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.principle-card p {
    font-size: 16px;
    color: #4a5568;
}

.split-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.process-list {
    list-style: none;
    margin-top: 25px;
}

.process-list li {
    font-size: 17px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
}

.process-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.cta-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-section h3 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 19px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.contact-section {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 400px;
}

.map-placeholder-content {
    text-align: center;
}

.map-placeholder-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.map-placeholder-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 15px;
}

.location-details {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.8;
}

.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.thanks-details {
    margin: 40px 0;
}

.thanks-details p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4a5568;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

.thanks-next-steps h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    font-size: 17px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
}

.thanks-next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #dfe6e9;
}

.thanks-contact p {
    font-size: 17px;
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

.legal-table th {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.legal-table td {
    padding: 15px;
    border-bottom: 1px solid #dfe6e9;
    font-size: 15px;
    color: #4a5568;
}

.legal-table tbody tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-section {
        height: 500px;
    }

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .feature-cards {
        flex-direction: column;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .service-layout,
    .service-layout-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .principles-grid {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .legal-table {
        font-size: 14px;
    }

    .legal-table th,
    .legal-table td {
        padding: 10px;
    }
}