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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    text-align: center;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: var(--secondary-color);
    color: white;
}

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

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

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.hero-left {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    color: white;
}

.hero-left h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-right {
    min-height: 350px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.insight-block {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.insight-content {
    margin-bottom: 2rem;
}

.insight-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.insight-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.problem-amplify {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
}

.problem-left {
    margin-bottom: 2rem;
}

.problem-left img {
    border-radius: 8px;
}

.problem-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.challenge-list li {
    padding: 1rem 0 1rem 2.5rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    font-size: 1.05rem;
}

.challenge-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.solution-reveal {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-reveal h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.solution-card p {
    line-height: 1.7;
    color: var(--text-light);
}

.trust-builder {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.trust-visual img {
    border-radius: 8px;
}

.services-preview {
    padding: 4rem 5%;
    background-color: var(--bg-white);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-item p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: var(--secondary-color);
}

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

.cta-inline a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.urgency-block {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.urgency-content {
    text-align: center;
}

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-urgent {
    display: inline-block;
    background-color: white;
    color: var(--accent-color);
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-urgent:hover {
    background-color: var(--bg-light);
    transform: scale(1.05);
}

.form-contact-section {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.form-left {
    margin-bottom: 2rem;
}

.form-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-left p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 1.2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col a {
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.page-hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    color: white;
    padding: 4rem 5%;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-left {
    width: 100%;
}

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

.service-detail-right {
    padding: 2.5rem;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.service-price-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-services-bottom {
    padding: 4rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-services-bottom p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-story {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
}

.story-left {
    margin-bottom: 2rem;
}

.story-left img {
    border-radius: 8px;
}

.story-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-right p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-light);
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.mv-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mv-card p {
    line-height: 1.8;
    color: var(--text-light);
}

.values-section {
    padding: 4rem 5%;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    line-height: 1.7;
    color: var(--text-light);
}

.expertise-section {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.expertise-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.expertise-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.expertise-desc {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-section {
    padding: 4rem 5%;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.approach-split {
    display: flex;
    flex-direction: column;
}

.approach-left {
    margin-bottom: 2rem;
}

.approach-left img {
    border-radius: 8px;
}

.approach-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.approach-step:last-child {
    border-bottom: none;
}

.approach-step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-step p {
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-member .role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-member p {
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about-bottom {
    padding: 4rem 5%;
    text-align: center;
}

.cta-about-bottom h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-about-bottom p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-main {
    padding: 3rem 5%;
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-detail p {
    line-height: 1.7;
    color: var(--text-light);
}

.contact-detail a {
    color: var(--secondary-color);
    font-weight: 600;
}

.location-section {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.location-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.location-description p {
    line-height: 1.8;
    color: var(--text-light);
}

.map-placeholder img {
    border-radius: 8px;
    width: 100%;
}

.faq-section {
    padding: 4rem 5%;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-hero {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 4rem 5%;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 50%;
    line-height: 80px;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-content {
    padding: 4rem 5%;
}

.thanks-message h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-text p {
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.thanks-service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

#selected-service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-note {
    color: var(--text-light);
}

.thanks-check-email {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-check-email h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-meanwhile {
    margin-top: 3rem;
}

.thanks-meanwhile h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.meanwhile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meanwhile-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.meanwhile-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.meanwhile-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.meanwhile-card p {
    color: var(--text-light);
}

.thanks-reassurance {
    padding: 3rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-reassurance h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-reassurance p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-header {
    background-color: var(--bg-light);
    padding: 3rem 5%;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-content {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-article h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-article h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-article h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-article p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.legal-article li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.legal-article a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.contact-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin: 1.5rem 0;
}

.contact-box h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-left,
    .hero-right {
        flex: 1;
    }

    .hero-left {
        padding: 4rem 5%;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .insight-block {
        flex-direction: row;
        gap: 3rem;
    }

    .insight-content,
    .insight-visual {
        flex: 1;
    }

    .problem-amplify {
        flex-direction: row;
        gap: 3rem;
    }

    .problem-left,
    .problem-right {
        flex: 1;
    }

    .solution-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .solution-card {
        flex: 1;
        min-width: 250px;
    }

    .trust-builder {
        flex-direction: row;
        gap: 3rem;
    }

    .trust-content,
    .trust-visual {
        flex: 1;
    }

    .services-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .form-contact-section {
        flex-direction: row;
        gap: 3rem;
    }

    .form-left,
    .form-right {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

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

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

    .service-detail-left {
        flex: 1;
    }

    .service-detail-left img {
        height: 100%;
        min-height: 400px;
    }

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

    .about-story {
        flex-direction: row;
        gap: 3rem;
    }

    .story-left,
    .story-right {
        flex: 1;
    }

    .mission-vision {
        flex-direction: row;
    }

    .mv-card {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 250px;
    }

    .expertise-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

    .approach-split {
        flex-direction: row;
        gap: 3rem;
    }

    .approach-left,
    .approach-right {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 250px;
    }

    .meanwhile-links {
        flex-direction: row;
    }

    .meanwhile-card {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
