* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

.btn-reject:hover {
    border-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 3px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

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

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d5dde0;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-statement {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.statement-content p {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.split-feature {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.feature-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background-color: #e8eef1;
}

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

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

.feature-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-overview {
    padding: 120px 40px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #555555;
}

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

.service-card {
    flex: 0 1 380px;
    background-color: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #d5dde0;
}

.service-card h3 {
    font-size: 24px;
    margin: 28px 30px 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin: 0 30px 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 30px 20px;
}

.btn-service {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px 0;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.split-reverse {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.split-text {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.split-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background-color: #e8eef1;
}

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

.testimonials-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    padding: 100px 40px;
    background-color: #2c3e50;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #bdc3c7;
    margin-bottom: 50px;
}

.inquiry-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 6px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-statement {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.statement-wrapper h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.statement-wrapper p {
    font-size: 19px;
    line-height: 1.8;
    color: #555555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #bdc3c7;
    padding: 70px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #252525;
    border-radius: 4px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.page-hero {
    padding: 100px 40px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 100px;
    gap: 60px;
    align-items: stretch;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #e8eef1;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 28px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

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

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

.about-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.about-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #e8eef1;
}

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

.methodology {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.methodology-container h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.methodology-container > p {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.method-item {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.split-stat-section {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.stat-content {
    flex: 1;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
}

.stat-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 700;
}

.stat-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 50px;
}

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

.stat-box {
    flex: 1;
    min-width: 150px;
}

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

.stat-label {
    font-size: 16px;
    color: #95a5a6;
}

.stat-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background-color: #e8eef1;
}

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

.principles-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.principles-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.principles-wrapper h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

.principles-list {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.principle {
    flex: 1;
    min-width: 280px;
}

.principle h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.principle p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.about-final {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.final-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.final-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.contact-main {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
}

.contact-note {
    margin-top: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.contact-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #e8eef1;
}

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

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

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

.location-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.approach-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.contact-additional {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.additional-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.additional-content ul {
    margin: 30px 0;
    padding-left: 25px;
}

.additional-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.thanks-section {
    padding: 120px 40px;
    min-height: 70vh;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-container > p {
    font-size: 19px;
    color: #555555;
    margin-bottom: 40px;
}

.thanks-details {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 8px;
}

.thanks-details strong {
    font-weight: 700;
}

.thanks-info {
    margin-bottom: 50px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.thanks-info ul {
    margin: 20px 0;
    padding-left: 25px;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.thanks-additional {
    margin-bottom: 50px;
}

.thanks-additional h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-additional p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 16px;
}

.thanks-additional ul {
    padding-left: 25px;
}

.thanks-additional ul li {
    margin-bottom: 12px;
}

.thanks-additional ul li a {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
}

.thanks-additional ul li a:hover {
    text-decoration: underline;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: #34495e;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0 20px 25px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .split-feature,
    .split-reverse,
    .split-stat-section,
    .about-split,
    .contact-grid {
        flex-direction: column;
    }

    .hero-right,
    .feature-image,
    .split-image,
    .stat-image,
    .about-image,
    .contact-image {
        flex: 0 0 400px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 400px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-left h1,
    .hero-content h1 {
        font-size: 38px;
    }

    .services-intro h2,
    .testimonials-section h2,
    .methodology-container h2,
    .principles-wrapper h2,
    .approach-wrapper h2 {
        font-size: 32px;
    }
}

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

    .ad-disclosure {
        flex-basis: 100%;
        text-align: center;
    }

    .hero-left,
    .feature-text,
    .split-text,
    .stat-content {
        padding: 50px 30px;
    }

    .hero-left h1,
    .hero-content h1 {
        font-size: 32px;
    }

    .services-grid,
    .testimonials-container,
    .methodology-grid,
    .principles-list,
    .approach-steps {
        flex-direction: column;
    }

    .service-card,
    .method-item,
    .principle,
    .approach-step {
        min-width: 100%;
    }

    .inquiry-form {
        padding: 30px;
    }

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

    .cookie-content p {
        min-width: 100%;
    }
}