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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.main-nav {
    background-color: #1a3a52;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #d4af37;
}

.ad-label {
    font-size: 0.8rem;
    color: #d4af37;
    padding: 0.25rem 0.75rem;
    border: 1px solid #d4af37;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.hero-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.hero-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.intro-text {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1rem;
}

.services-grid {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #1a3a52;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card-service {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 220px;
    background-color: #e8e8e8;
}

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

.card-service h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.35rem;
    color: #1a3a52;
}

.card-service p {
    padding: 0 1.5rem;
    color: #555;
    flex-grow: 1;
}

.card-service .price {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

.btn-select {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.85rem;
    background-color: #1a3a52;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #0f2537;
}

.form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.split-form {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #1a3a52;
    color: #ffffff;
    border-radius: 8px;
}

.trust-content h2 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.trust-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.main-footer {
    background-color: #0f1419;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    font-style: italic;
    color: #777 !important;
    margin-top: 1rem !important;
}

.about-hero {
    background-color: #1a3a52;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.about-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
}

.about-image-col {
    flex: 1;
    background-color: #e8e8e8;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-col h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.about-text-col p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1rem;
}

.services-header {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.services-header h1 {
    font-size: 2.75rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 350px;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 1.85rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.service-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.contact-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 2.75rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-page {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: #1a3a52;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 2.75rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-content .selected-service {
    font-weight: 600;
    color: #d4af37;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .split-form,
    .about-split,
    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .card-service {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}
