﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1f5f3a;
    --color-secondary: #a4d4b4;
    --color-light: #e8f4ec;
    --color-white: #ffffff;
    --color-black: #0f1d14;
    --color-gray: #4f5d52;
    --color-gray-light: #f4f7f5;
    --color-text: #213329;
    --transition: all 0.3s ease;
    --shadow: 0 12px 30px rgba(31, 95, 58, 0.18);
    --shadow-lg: 0 25px 60px rgba(31, 95, 58, 0.22);
    --shadow-soft: 0 8px 24px rgba(31, 95, 58, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.92);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(180deg, rgba(228, 241, 232, 0.6) 0%, rgba(255, 255, 255, 1) 35%, rgba(247, 252, 248, 1) 100%);
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
.header {
    background: rgba(31, 95, 58, 0.85);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 35px rgba(19, 50, 33, 0.18);
    border: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-img {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 1.1rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 999px;
    background: transparent;
    border: none;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
    border-radius: 999px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    background-image: 
        url('../image/picture1.jpg'),
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 82, 37, 0.62);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 16px 35px rgba(31, 95, 58, 0.18);
}

.btn-primary {
    background: linear-gradient(135deg, #a1d7b2 0%, #7ec79a 100%);
    color: var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 45px rgba(31, 95, 58, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.25);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, rgba(161, 215, 178, 0) 0%, rgba(161, 215, 178, 0.9) 50%, rgba(161, 215, 178, 0) 100%);
    margin: 0 auto 20px;
    border: none;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(31, 95, 58, 0.18);
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(161, 215, 178, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.about-subtitle {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--glass-bg);
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.feature-icon {
    width: 35px;
    height: 35px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 244, 236, 0.6) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--glass-bg);
    padding: 32px;
    border-radius: 18px;
    border: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    backdrop-filter: blur(16px);
}

.review-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: none;
    position: relative;
}

.review-author::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(161, 215, 178, 0.4) 0%, rgba(31, 95, 58, 0.8) 100%);
    box-shadow: 0 6px 16px rgba(31, 95, 58, 0.3);
}

.review-author strong {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.review-author span {
    color: var(--color-text);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(232, 244, 236, 0.65) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.services-alt {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 244, 236, 0.65) 100%);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-content-reverse {
    direction: rtl;
}

.service-content-reverse > * {
    direction: ltr;
}

.service-image img {
    border-radius: 10px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.service-text h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-text > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.service-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background-color: var(--glass-bg);
    border-radius: 16px;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.services-alt .service-item {
    background-color: var(--glass-bg);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(161, 215, 178, 0.35) 100%);
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Accordion Section */
.accordion-section {
    background-color: var(--color-white);
}

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

.accordion-item {
    margin-bottom: 20px;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--glass-bg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(161, 215, 178, 0.35) 0%, rgba(161, 215, 178, 0.15) 100%);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(31, 95, 58, 0.85) 0%, rgba(161, 215, 178, 0.5) 100%);
    color: var(--color-white);
}

.accordion-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.accordion-body {
    padding: 30px 25px;
}

.accordion-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 25px;
    border-radius: 8px;
    border: none;
    box-shadow: var(--shadow-soft);
}

.accordion-body p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
}

.accordion-body li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: none;
    box-shadow: inset 0 -1px 0 rgba(31, 95, 58, 0.1);
}

.accordion-body li:last-child {
    box-shadow: none;
}

.accordion-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.4rem;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(232, 244, 236, 0.65) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--glass-bg);
    padding: 32px;
    border-radius: 18px;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.faq-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: start;
    gap: 15px;
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 45px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}

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

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(161, 215, 178, 0.9) 0%, rgba(126, 199, 154, 0.9) 100%);
    transform: scale(1.12) translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    font-size: 1rem;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

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

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(164, 212, 180, 1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

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

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.95rem;
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(164, 212, 180, 0) 0%, rgba(164, 212, 180, 0.8) 50%, rgba(164, 212, 180, 0) 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--glass-bg);
    padding: 32px;
    border-radius: 18px;
    border: none;
    display: flex;
    align-items: start;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.info-icon {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.info-text p,
.info-text a {
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-text a {
    color: var(--color-primary);
    font-weight: 600;
}

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

/* Contact Form */
.contact-form {
    background-color: var(--glass-bg);
    padding: 42px;
    border-radius: 22px;
    border: none;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

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

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.95);
    transition: var(--transition);
    box-shadow: inset 0 0 0 1px rgba(31, 95, 58, 0.16);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(31, 95, 58, 0.35), 0 0 0 6px rgba(161, 215, 178, 0.25);
}

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

.contact-map {
    margin-top: 60px;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

/* Success Page */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.success-content {
    max-width: 600px;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    color: var(--color-secondary);
    border-radius: 50%;
    padding: 20px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45), 0 20px 40px rgba(31, 95, 58, 0.25);
    background: rgba(31, 95, 58, 0.15);
}

.success-content h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.success-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 50px;
    border-radius: 22px;
    border: none;
    box-shadow: var(--shadow);
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-primary);
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 2px solid var(--color-secondary);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-content,
    .service-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-content-reverse {
        direction: ltr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-subtitle,
    .service-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .review-card,
    .faq-item,
    .service-item {
        padding: 20px;
    }
}

/* Image Placeholder Styles */
img[src*="picture"] {
    background-color: var(--color-gray);
    min-height: 300px;
    object-fit: cover;
}