* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #1a2332;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

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

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 24px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image {
    display: none;
}

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

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.intro-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.info-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 16px;
    color: #1a2332;
}

.info-card p {
    padding: 0 24px 24px;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

.services-highlight {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-highlight h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a2332;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 56px;
}

.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
}

.service-card.featured {
    border-color: #667eea;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #667eea;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #f8f9fa;
    overflow: hidden;
}

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

.service-details {
    padding: 32px 24px;
}

.service-details h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #495057;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 18px;
}

.select-service {
    width: 100%;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a2332;
}

.form-intro p {
    color: #6c757d;
    font-size: 16px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #343a40;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.submit-btn {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: #1a2332;
}

.trust-content {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-text {
    flex: 1;
    min-width: 300px;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.trust-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.trust-text a:hover {
    text-decoration: underline;
}

.trust-image {
    flex: 1;
    min-width: 300px;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.references-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2332;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #667eea;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 48px 0;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.main-footer {
    background-color: #1a2332;
    color: #e8eaed;
    padding: 56px 0 24px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid #343a40;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 3px solid #667eea;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
}

.cookie-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 24px 60px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-grid {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text-block {
    flex: 1;
    min-width: 300px;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a2332;
}

.about-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-image-block {
    flex: 1;
    min-width: 300px;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 56px;
    color: #1a2332;
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 260px;
    max-width: 360px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #667eea;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.approach-layout {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

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

.approach-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a2332;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 56px;
    color: #1a2332;
}

.expertise-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.expertise-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.expertise-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 16px;
    color: #1a2332;
}

.expertise-card p {
    padding: 0 24px 24px;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #667eea;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.featured-label {
    position: absolute;
    top: -16px;
    left: 48px;
    background-color: #667eea;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a2332;
}

.price-display {
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
}

.service-content-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-description {
    flex: 1;
    min-width: 300px;
}

.service-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 24px;
}

.service-description h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

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

.service-visual {
    flex: 1;
    min-width: 300px;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.comparison-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 56px;
    color: #1a2332;
}

.comparison-guide {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.guide-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.guide-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #667eea;
}

.guide-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #1a2332;
}

.contact-detail-card {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-detail-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #667eea;
}

.contact-detail-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-visual-section {
    flex: 1;
    min-width: 300px;
}

.contact-visual-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
    object-fit: cover;
}

.location-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.location-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.location-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 12px;
}

.contact-reasons {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-reasons h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 56px;
    color: #1a2332;
}

.reasons-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.reason-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 260px;
    max-width: 400px;
}

.reason-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #667eea;
}

.reason-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.response-time-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.response-time-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 56px;
    color: #1a2332;
}

.response-info {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.response-item {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.response-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #667eea;
}

.response-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.thanks-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a2332;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.submission-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #1a2332;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 240px;
    max-width: 300px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2332;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-primary {
    background-color: #667eea;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e9ecef;
    color: #495057;
}

.btn-secondary:hover {
    background-color: #dee2e6;
    transform: translateY(-2px);
}

.additional-info {
    padding: 80px 0;
    background-color: #ffffff;
}

.additional-info h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a2332;
}

.info-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-box {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.info-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #667eea;
}

.info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a2332;
}

.last-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #343a40;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .services-highlight h2,
    .page-header h1 {
        font-size: 32px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}