* {
    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: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-label {
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #333;
}

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

.services-display {
    padding: 80px 40px;
    background-color: #fff;
}

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

.section-header-centered h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    width: calc(33.333% - 25px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card.selected {
    border: 3px solid #27ae60;
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-card.selected .select-service {
    background-color: #27ae60;
}

.service-card.selected .select-service:hover {
    background-color: #229954;
}

.form-split {
    display: flex;
    min-height: 650px;
}

.form-image {
    flex: 1;
    overflow: hidden;
}

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

.form-container {
    flex: 1;
    padding: 70px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-notice {
    padding: 15px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    color: #856404;
    font-size: 14px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    padding: 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-split {
    display: flex;
    min-height: 550px;
}

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

.trust-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.trust-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonial {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

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

.testimonial-author {
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

.trust-image {
    flex: 1;
    overflow: hidden;
}

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

.commitment-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

.commitment-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 40px;
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content-center p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detail-split {
    display: flex;
    min-height: 500px;
}

.services-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #333;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-section .cta-button {
    background-color: #fff;
    color: #667eea;
}

.cta-section .cta-button:hover {
    background-color: #f8f9fa;
    color: #764ba2;
}

.about-split {
    display: flex;
    min-height: 550px;
}

.about-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.about-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    min-height: 550px;
}

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

.values-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.values-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.values-image {
    flex: 1;
    overflow: hidden;
}

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

.expertise-split {
    display: flex;
    min-height: 550px;
}

.expertise-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.expertise-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.expertise-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.expertise-image {
    flex: 1;
    overflow: hidden;
}

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

.process-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.process-section h2 {
    font-size: 42px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.impact-split {
    display: flex;
    min-height: 550px;
}

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

.impact-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.impact-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.impact-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.impact-image {
    flex: 1;
    overflow: hidden;
}

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

.contact-split {
    display: flex;
    min-height: 700px;
}

.contact-info-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.contact-info-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

.contact-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-map {
    flex: 1;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.faq-section h2 {
    font-size: 42px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 320px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-main {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-text h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    text-align: left;
    margin-bottom: 30px;
}

.thanks-info h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.thanks-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.thanks-reminder {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    margin-bottom: 30px;
}

.thanks-reminder h3 {
    font-size: 16px;
    color: #856404;
    margin-bottom: 10px;
    font-weight: 700;
}

.thanks-reminder p {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

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

.thanks-contact p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

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

.btn-primary {
    padding: 14px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 35px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.legal-page {
    padding: 60px 40px 80px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 20px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .services-detail-split,
    .about-split,
    .values-split,
    .expertise-split,
    .impact-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .form-container,
    .trust-content,
    .service-detail-content,
    .about-content,
    .values-content,
    .expertise-content,
    .impact-content,
    .contact-info-content {
        padding: 50px 30px;
    }

    .hero-content h1,
    .intro-content h2,
    .form-container h2,
    .trust-content h2,
    .service-detail-content h2,
    .about-content h2,
    .values-content h2,
    .expertise-content h2,
    .impact-content h2,
    .contact-info-content h2 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .thanks-container {
        padding: 40px 30px;
    }

    .step-item {
        flex-direction: column;
    }
}