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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5aa0;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    background: #f5f7fa;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background: #ddd;
}

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

.cta-button {
    display: inline-block;
    background: #2c5aa0;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1e4278;
}

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.intro-left {
    flex: 1;
    background: #e8eef5;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-right {
    flex: 1;
    padding: 2rem;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-preview {
    background: #fafbfc;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(33.333% - 1.5rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-wrapper {
    width: 100%;
    height: 240px;
    background: #ddd;
}

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

.service-info {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5aa0;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-button-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c5aa0;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #2c5aa0;
    transition: all 0.3s;
}

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

.form-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

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

.form-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-content p {
    font-size: 1.1rem;
    color: #666;
}

.form-wrapper {
    flex: 1;
    background: #f5f7fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    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: #2c5aa0;
}

.submit-button {
    background: #2c5aa0;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #1e4278;
}

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.trust-left {
    flex: 1;
    padding: 2rem;
}

.trust-left h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.3rem;
}

.trust-right {
    flex: 1;
    background: #e8eef5;
}

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.disclaimer-section {
    background: #f5f7fa;
    padding: 3rem 2rem;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.disclaimer-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    color: #333;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2c5aa0;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1e4278;
}

.cookie-reject {
    background: #e0e0e0;
    color: #333;
}

.cookie-reject:hover {
    background: #c0c0c0;
}

.contact-page-wrapper {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-split {
    display: flex;
    gap: 3rem;
}

.contact-info-section {
    flex: 1;
    background: #f5f7fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-info-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5aa0;
}

.contact-detail p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-hero {
    background: #f5f7fa;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.services-page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.service-detail-image {
    flex: 1;
    background: #e8eef5;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content .price {
    display: block;
    margin-top: 1.5rem;
}

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

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

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.legal-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

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

.thanks-content a {
    display: inline-block;
    background: #2c5aa0;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #1e4278;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .form-section,
    .trust-section,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}