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

:root {
    --light-mint: #F4F5FA;
    --light-sage: #D5D9E3;
    --pastel-green: #5B4BB2;
    --soft-cream: #E7E5F9;
    --natural-green: #3A2E72;
    --shadow-sm: 0 2px 8px rgba(91, 75, 178, 0.08);
    --shadow-md: 0 4px 20px rgba(91, 75, 178, 0.12);
    --shadow-lg: 0 10px 40px rgba(91, 75, 178, 0.15);
    --shadow-xl: 0 20px 60px rgba(91, 75, 178, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--natural-green);
    background: linear-gradient(135deg, var(--light-mint) 0%, #ffffff 50%, var(--soft-cream) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

a{
    color: #2a1f5a;
}

header {
    background: rgba(231, 229, 249, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid rgba(91, 75, 178, 0.1);
    transition: all 0.3s ease;
}

header:hover {
    background: rgba(231, 229, 249, 0.95);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.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-radius: 10px;

}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--natural-green);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

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

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

.menu-toggle {
    display: none;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.hero {
    background: linear-gradient(135deg, rgba(231, 229, 249, 0.9) 0%, rgba(213, 217, 227, 0.8) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}
.hero img{
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 75, 178, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(58, 46, 114, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    animation: fadeInLeft 0.8s ease;
}

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

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

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

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pastel-green), var(--natural-green));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    max-height: 500px;
    border: 5px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 25px 70px rgba(91, 75, 178, 0.25);
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(91, 75, 178, 0.1), rgba(58, 46, 114, 0.1));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--pastel-green);
    border: 5px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.hero-image-placeholder:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 25px 70px rgba(91, 75, 178, 0.25);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--natural-green);
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    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) 0%, var(--pastel-green) 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(-1px);
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

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

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(91, 75, 178, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 75, 178, 0.05) 0%, rgba(58, 46, 114, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--pastel-green);
}

.card h3 {
    color: var(--pastel-green);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.card p {
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card:hover .icon {
    animation: none;
    transform: scale(1.2) rotate(5deg);
    transition: transform 0.3s ease;
}

.content-section {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(91, 75, 178, 0.1);
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.content-section h2 {
    color: var(--pastel-green);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.content-section h3 {
    color: var(--pastel-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-sage);
    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(91, 75, 178, 0.1);
    transform: translateY(-2px);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

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

.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(231, 229, 249, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(91, 75, 178, 0.1);
    transition: all 0.3s ease;
}

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

.contact-info h3 {
    color: var(--pastel-green);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 0.7rem;
    line-height: 1.8;
}

.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(91, 75, 178, 0.15);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

footer {
    background: linear-gradient(135deg, var(--natural-green) 0%, #2a1f5a 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pastel-green), var(--soft-cream), var(--pastel-green));
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--soft-cream);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-cream);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--soft-cream);
    transform: translateX(5px);
}

.footer-section a:hover::after {
    width: 100%;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--soft-cream);
    transform: translateY(-2px);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--natural-green) 0%, #2a1f5a 100%);
    color: white;
    padding: 2rem;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease;
    backdrop-filter: blur(10px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    line-height: 1.7;
}

.cookie-text a {
    color: var(--soft-cream);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie-text a:hover {
    opacity: 0.8;
}

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

.cookie-accept {
    background: white;
    color: var(--natural-green);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.thank-you-content {
    text-align: center;
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
}

.thank-you-content h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--natural-green);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(91, 75, 178, 0.1);
}

.policy-content h1 {
    background: linear-gradient(135deg, var(--pastel-green) 0%, var(--natural-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-weight: 800;
    font-size: 2.5rem;
}

.policy-content h2 {
    color: var(--pastel-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: var(--pastel-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.policy-content ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.policy-content ul li {
    margin-bottom: 0.7rem;
    position: relative;
}
@media (max-width: 810px) {
    .nav-links{
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem ;
        background: rgba(231, 229, 249, 0.98);
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .hero-image-placeholder {
        height: 350px;
        font-size: 3rem;
    }

    .hero-image {
        max-height: 350px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .content-section {
        padding: 2rem;
    }

    .policy-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .thank-you-content{
      
        padding: 10px;
    }
    .thank-you-content h1{
        font-size: 2rem;
    }
       .thank-you-content p{
        font-size: 0.9rem;
    }
    .logo span{
        display: none;
    }
    .container {
        padding: 0 0.8rem;
    }

    .hero {
        padding: 2.5rem 0;
        min-height: auto;
    }

    .hero-container {
        gap: 2rem;
    }

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

    .hero-image-placeholder {
        height: 280px;
        font-size: 2.5rem;
    }

    .hero-image {
        max-height: 280px;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .section {
        padding: 3rem 0;
    }

    .card {
        padding: 2rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .footer-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .logo {
        font-size: 1.2rem;
    }

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

    .hero-image-placeholder {
        height: 250px;
        font-size: 2rem;
    }

    .hero-image {
        max-height: 250px;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
    }
}
