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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Red Rose', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f4f0;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #45a049;
}

.cookie-btn.decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background-color: white;
    color: black;
}

/* Header */
.header {
    background: #f8f4f0;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #4a2c2a;
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4a2c2a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4a2c2a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: #f8f4f0;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #4a2c2a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a2c2a;
    margin-bottom: 3rem;
}

.scroll-indicator {
    text-align: right;
    margin-top: 2rem;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #4a2c2a;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-left: auto;
    margin-right: 0;
    transition: transform 0.3s ease;
}

.scroll-arrow:hover {
    transform: translateY(5px);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #4a2c2a;
    border-bottom: 2px solid #4a2c2a;
}

/* Investment Programs */
.investment-programs {
    padding: 80px 0;
    background: #f8f4f0;
}

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

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a2c2a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.program-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.program-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a2c2a;
    font-weight: bold;
}

.program-btn {
    display: inline-block;
    background: transparent;
    color: #4a2c2a;
    padding: 12px 24px;
    border: 2px solid #4a2c2a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: #4a2c2a;
    color: white;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f4f0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a2c2a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    background: transparent;
    color: #4a2c2a;
    padding: 12px 24px;
    border: 2px solid #4a2c2a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #4a2c2a;
    color: white;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background: #f8f4f0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partnership-dark {
    background: #4a2c2a;
    color: white;
    padding: 3rem;
}

.partnership-light {
    background: white;
    color: #333;
    padding: 3rem;
}

.partnership-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.partnership-dark h3,
.partnership-light h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.partnership-dark h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8f4f0;
}

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

.partnership-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.partnership-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f8f4f0;
    font-weight: bold;
}

.partnership-light p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partnership-btn {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partnership-btn:hover {
    background: white;
    color: #4a2c2a;
}

.partnership-btn-light {
    display: inline-block;
    background: transparent;
    color: #4a2c2a;
    padding: 12px 24px;
    border: 2px solid #4a2c2a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partnership-btn-light:hover {
    background: #4a2c2a;
    color: white;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f4f0;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a2c2a;
    margin: 1.5rem 1.5rem 1rem;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.service-btn {
    display: inline-block;
    background: transparent;
    color: #4a2c2a;
    padding: 12px 24px;
    border: 2px solid #4a2c2a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 1.5rem 1.5rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #4a2c2a;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #4a2c2a;
    color: white;
    text-align: center;
}

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

.cta-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: white;
    color: #4a2c2a;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 40px;
    background: #f8f4f0;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a2c2a;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.contact-form input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    background: #e8ddd4;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px #4a2c2a;
}

.contact-form input::placeholder {
    color: #666;
}

.form-submit {
    width: 100%;
    padding: 15px 20px;
    background: #4a2c2a;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #3a221f;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #4a2c2a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #4a2c2a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #f8f4f0;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 120px 0 60px;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

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

    .partnership-dark,
    .partnership-light {
        padding: 2rem;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .program-card,
    .partnership-dark,
    .partnership-light {
        padding: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .contact-content h2 {
        font-size: 1.8rem;
    }
}

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

.program-card,
.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }



/* Success Page Styles */
.success-section {
    padding: 150px 0 80px;
    background: #f8f4f0;
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
    animation: bounceIn 0.8s ease;
}

.success-icon svg {
    filter: drop-shadow(0 4px 20px rgba(76, 175, 80, 0.3));
}

.success-title {
    font-size: 3rem;
    font-weight: 700;
    color: #4a2c2a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.success-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.success-btn.primary {
    background: #4a2c2a;
    color: white;
    border: 2px solid #4a2c2a;
}

.success-btn.primary:hover {
    background: #3a221f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 44, 42, 0.3);
}

.success-btn.secondary {
    background: transparent;
    color: #4a2c2a;
    border: 2px solid #4a2c2a;
}

.success-btn.secondary:hover {
    background: #4a2c2a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 44, 42, 0.3);
}

/* Next Steps Section */
.next-steps-section {
    padding: 80px 0;
    background: white;
}

.next-steps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a2c2a;
    margin-bottom: 3rem;
}

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

.step-card {
    background: #f8f4f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #4a2c2a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a2c2a;
    margin-bottom: 1rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Success Page Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

.step-card {
    animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

.program-card,
.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Success Page Responsive */
@media (max-width: 768px) {
    .success-title {
        font-size: 2.2rem;
    }
    
    .success-description {
        font-size: 1.1rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .next-steps-section h2 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .success-section {
        padding: 120px 0 60px;
    }
    
    .success-title {
        font-size: 1.8rem;
    }
    
    .success-description {
        font-size: 1rem;
    }
    
    .next-steps-section h2 {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
}