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

:root {
    --light-mint: #E9F6F1;
    --light-sage: #C9E2DA;
    --pastel-green: #2E7D59;
    --soft-cream: #DFF4E9;
    --natural-green: #1D4D33;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--natural-green);
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-cream) 50%, var(--light-mint) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

a{
    color: #164028;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-mint);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pastel-green), var(--natural-green));
    border-radius: 6px;
    border: 2px solid var(--light-mint);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--natural-green);
}

header {
    background: rgba(223, 244, 233, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(29, 77, 51, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(46, 125, 89, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 60px;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;

}
.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pastel-green), var(--natural-green));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--natural-green);
    font-weight: 500;
    position: relative;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--pastel-green);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--pastel-green);
}

nav a:hover::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--natural-green);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

main {
    min-height: calc(100vh - 200px);
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #E9F6F1 0%, #C9E2DA 25%, #DFF4E9 50%, #E9F6F1 75%, #C9E2DA 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(46, 125, 89, 0.15) 0%, rgba(46, 125, 89, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(29, 77, 51, 0.12) 0%, rgba(29, 77, 51, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-decoration::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(46, 125, 89, 0.1), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 6s ease-in-out infinite;
}

.hero-decoration::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, rgba(29, 77, 51, 0.08), transparent);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: morphShape 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(233, 246, 241, 0.5));
    backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 2px solid rgba(46, 125, 89, 0.2);
    box-shadow: 0 20px 60px rgba(29, 77, 51, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: heroContentAppear 1.2s ease-out;
}

@keyframes heroContentAppear {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green), var(--pastel-green));
    border-radius: 40px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-content:hover::before {
    opacity: 0.3;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    color: var(--natural-green);
    position: relative;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.08);
    animation: slideInLeft 1s ease-out 0.3s both;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--pastel-green), transparent);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(46, 125, 89, 0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
    color: var(--pastel-green);
    font-weight: 500;
    animation: slideInRight 1s ease-out 0.5s both;
    line-height: 1.6;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero .btn {
    animation: scaleIn 0.8s ease-out 0.8s both;
    margin-top: 1rem;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn {
    display: inline-block;
    text-align: center;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 125, 89, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--natural-green), var(--pastel-green));
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 89, 0.4);
}

.btn:hover::before {
    left: 0;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(46, 125, 89, 0.3);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(145deg, rgba(201, 226, 218, 0.8), rgba(233, 246, 241, 0.9));
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(46, 125, 89, 0.1);
    box-shadow: 0 5px 20px rgba(46, 125, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 89, 0.05) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(46, 125, 89, 0.2);
    border-color: var(--pastel-green);
}

.card:hover::before {
    transform: translateY(0);
}

.card h3 {
    color: var(--natural-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--pastel-green);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--natural-green);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--pastel-green), transparent);
    border-radius: 2px;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}
.content-block h3{
font-size: 24px;
}

.content-block img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(46, 125, 89, 0.15);
    position: relative;
}

.content-block img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 45px rgba(46, 125, 89, 0.25);
}

.contact-form {
    background: linear-gradient(145deg, rgba(201, 226, 218, 0.6), rgba(223, 244, 233, 0.8));
    backdrop-filter: blur(15px);
    padding: 45px;
    border-radius: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(46, 125, 89, 0.15);
    border: 1px solid rgba(46, 125, 89, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--natural-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(46, 125, 89, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-green);
    box-shadow: 0 0 0 4px rgba(46, 125, 89, 0.1);
    transform: translateY(-2px);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
    accent-color: var(--pastel-green);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(46, 125, 89, 0.2);
    border: 3px solid rgba(46, 125, 89, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: linear-gradient(135deg, var(--natural-green) 0%, #164028 100%);
    color: white;
    padding: 50px 20px 25px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pastel-green), var(--light-sage), var(--pastel-green));
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--light-mint);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--pastel-green);
}

.footer-section p,
.footer-section a {
    color: var(--light-sage);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-section a:hover {
    color: var(--light-mint);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(46, 125, 89, 0.5);
    text-align: center;
}

.policy-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.policy-links a {
    color: var(--light-sage);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.policy-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--light-mint);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.policy-links a:hover {
    color: var(--light-mint);
}

.policy-links a:hover::before {
    width: 100%;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(233, 246, 241, 0.98));
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(29, 77, 51, 0.3);
    z-index: 1000;
    display: none;
    border: 2px solid rgba(46, 125, 89, 0.2);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup.show {
    display: block;
}

.privacy-popup h3 {
    color: var(--natural-green);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.privacy-popup p {
    margin-bottom: 20px;
    color: var(--pastel-green);
    line-height: 1.6;
}

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

.privacy-popup button {
    flex: 1;
}

.success-message {
    text-align: center;
    padding: 80px 20px;
}

.success-message h1 {
    color: var(--pastel-green);
    font-size: 2.8rem;
    margin-bottom: 25px;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.policy-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(233, 246, 241, 0.8));
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(46, 125, 89, 0.15);
    border: 1px solid rgba(46, 125, 89, 0.1);
}

.policy-content h2 {
    color: var(--natural-green);
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 1.6rem;
    position: relative;
    padding-left: 20px;
}

.policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: linear-gradient(180deg, var(--pastel-green), var(--natural-green));
    border-radius: 3px;
}

.policy-content h3 {
    color: var(--pastel-green);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--natural-green);
}

.policy-content ul {
    padding-left: 35px;
}

.policy-content ul li {
    margin-bottom: 8px;
    position: relative;
}

.policy-content ul li::marker {
    color: var(--pastel-green);
}

.policy-content a {
    color: var(--pastel-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--natural-green);
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, rgba(233, 246, 241, 0.3), rgba(201, 226, 218, 0.2));
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(233, 246, 241, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(46, 125, 89, 0.1);
    box-shadow: 0 5px 20px rgba(46, 125, 89, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(46, 125, 89, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--natural-green);
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--pastel-green);
    background: rgba(46, 125, 89, 0.05);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--pastel-green);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--pastel-green);
    line-height: 1.8;
    margin: 0;
    padding-top: 10px;
}

@media (max-width: 820px){
nav ul{
    gap: 0px;
}
}
@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(223, 244, 233, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        gap: 1.5rem;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
    }

    nav ul.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 70vh;
        padding: 40px 15px;
    }

    .hero-content {
        padding: 40px 25px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1::after {
        width: 80px;
        height: 3px;
    }

    .content-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .policy-links {
        flex-direction: column;
        gap: 12px;
    }

    .policy-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .policy-content h2{
        font-size: 16px;
    }
    .logo span{
        display: none;
    }
    .hero {
        min-height: 60vh;
        padding: 30px 15px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero h1::after {
        width: 60px;
        height: 2px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: 40px 15px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 320px) {
    .hero {
        min-height: 50vh;
    }

    .hero-content {
        padding: 25px 15px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero h1::after {
        width: 50px;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .policy-content {
        padding: 20px;
    }
}
