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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-banner h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.cookie-banner p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

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

.btn-accept {
    background: #A0522D;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #8B4513;
}

.btn-manage {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-manage:hover {
    background: #e9e9e9;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('./assets/1.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 40px 0 80px;
    min-height: 100vh;
}

.hero-overlay {
    width: 100%;
    height: 100%;
}

.hero-header {
    text-align: center;
    padding: 20px 0 60px;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #333;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
    text-align: left;
}

/* Theory Section */
.theory-section {
    padding: 80px 0;
    background: #fff;
}

.theory-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: flex-start;
}

.theory-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.3;
}

.theory-description p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.cta-button {
    background: #A0522D;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
}

.cta-button:hover {
    background: #8B4513;
    transform: translateY(-2px);
}

.theory-image {
    width: 100%;
}

.theory-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Knowledge Section */
.knowledge-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.knowledge-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.3;
}

.knowledge-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #666;
}

.knowledge-graphic {
    text-align: center;
    margin-top: 60px;
}

.knowledge-graphic img {
    max-width: 400px;
    height: auto;
}

/* Investment Knowledge Section */
.investment-knowledge-section {
    padding: 80px 0;
    background: #fff;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.investment-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.investment-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #666;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-item {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.topic-item:last-child {
    border-bottom: none;
}

.topic-item strong {
    color: #333;
}

.investment-image {
    width: 100%;
}

.investment-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Image Gallery */
.image-gallery {
    margin-top: 40px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-row:last-child {
    margin-bottom: 0;
}

.gallery-row img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Concrete Benefits Section */
.concrete-benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.benefits-image {
    width: 100%;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.benefits-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.benefits-intro {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #666;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item strong {
    color: #333;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: left;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: #f8f9fa;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A0522D;
    box-shadow: 0 0 0 2px rgba(160, 82, 45, 0.1);
}

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

.submit-button {
    background: #A0522D;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    float: right;
}

.submit-button:hover {
    background: #8B4513;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #A0522D;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.footer-info {
    text-align: center;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .theory-content,
    .investment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 20px 0 60px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .theory-section,
    .knowledge-section,
    .investment-knowledge-section,
    .concrete-benefits-section,
    .team-section {
        padding: 60px 0;
    }
    
    .footer-links a {
        display: block;
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .theory-text h2,
    .knowledge-section h2,
    .investment-text h2,
    .benefits-text h2 {
        font-size: 1.6rem;
    }
    
    .cta-button,
    .submit-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .cookie-banner {
        right: 10px;
        left: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-manage {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Form Clear Fix */
.contact-form::after {
    content: "";
    display: table;
    clear: both;
}

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

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theory-content,
.knowledge-section,
.investment-content,
.benefits-content,
.team-member {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-header {
    animation: slideInFromTop 1s ease forwards;
}

.hero-content {
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Button Hover Effects */
.cta-button,
.submit-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before,
.submit-button:hover::before {
    left: 100%;
}

/* Focus States */
.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

/* Image Hover Effects */
.theory-image img,
.investment-image img,
.benefits-image img,
.gallery-row img,
.team-member img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theory-image img:hover,
.investment-image img:hover,
.benefits-image img:hover,
.gallery-row img:hover,
.team-member img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Typography Improvements */
.topic-item,
.benefit-item {
    transition: padding-left 0.3s ease;
}

.topic-item:hover,
.benefit-item:hover {
    padding-left: 10px;
}

/* Mobile Navigation (if needed for future updates) */
@media (max-width: 768px) {
    .hamburger {
        display: none; /* Not needed for current design but ready for expansion */
        flex-direction: column;
        cursor: pointer;
        width: 25px;
        height: 20px;
        justify-content: space-between;
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        background: #333;
        transition: 0.3s;
    }
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    color: #fff;
    text-align: center;
    padding: 20px;
}

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

.success-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.success-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.back-button {
    background: #fff;
    color: #A0522D;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.back-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Accessibility Improvements */
.cta-button:focus,
.submit-button:focus,
.btn-accept:focus,
.btn-manage:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

/* Print Styles */
@media print {
    .cookie-banner,
    .contact-section,
    .footer {
        display: none;
    }
    
    .hero-section {
        background: #fff;
        color: #333;
    }
    
    .logo-text {
        color: #A0522D;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000;
    }
    
    .theory-section,
    .investment-knowledge-section,
    .team-section {
        background: #fff;
    }
    
    .knowledge-section,
    .concrete-benefits-section {
        background: #f0f0f0;
    }
}row {
        grid-template-columns: repeat(2, 1fr);
    }


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .theory-text h2,
    .knowledge-section h2,
    .investment-text h2,
    .benefits-text h2 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
}