/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

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

a {
    text-decoration: none;
    color: #3f7cbf;
}

ul {
    list-style-position: inside;
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background-color: #3f7cbf;
    color: white;
}

.btn-primary:hover {
    background-color: #2c5a8f;
}

.btn-secondary {
    background-color: #5096d4;
    color: white;
}

.btn-secondary:hover {
    background-color: #3679b5;
}

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

header h1 {
    font-weight: 700;
    margin: 0;
}

/* Hero section */
.hero {
    color: white;
    background-image: url('./assets/network-bg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.hero .btn {
    margin-top: 20px;
}

/* Strategy section */
.strategy {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.strategy h2 {
    color: #6a89b7;
    font-size: 2rem;
}

.modules {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.module {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.module h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Capital section */
.capital {
    background-color: #7a9bc2;
    color: white;
    padding: 60px 0;
}

.capital h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.capital-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.capital-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

.capital-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.capital-item h3 {
    font-size: 1.3rem;
}

/* Coaches section */
.coaches {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.coaches h2 {
    color: #6a89b7;
    font-size: 2rem;
    margin-bottom: 30px;
}

.coaches-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.coaches-text {
    flex: 1;
    min-width: 300px;
}

.coaches-image {
    flex: 1;
    min-width: 300px;
}

/* Testimonials section */
.testimonials {
    padding: 60px 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.testimonial p {
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-weight: 600;
    font-style: normal;
}

/* FAQ section */
.faq {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    color: #6a89b7;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
}

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

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

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

/* Contact section */
.contact {
    background-color: #7a9bc2;
    color: white;
    padding: 60px 0;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

form .btn {
    margin-top: 10px;
    width: 100%;
}

/* Footer */
footer {
    background-color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 25px;
    text-align: center;
}

.cookie-content h2 {
    color: #6a89b7;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .modules, 
    .capital-items,
    .coaches-content {
        flex-direction: column;
    }
    
    .module,
    .capital-item {
        min-width: 100%;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-banner {
        width: 95%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
    }
}

.thank-section {
    text-align: center;
}