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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.hidden {
    display: none !important;
}

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

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

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

section {
    padding: 60px 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #b6e288;
    color: #333;
}

.btn-primary:hover {
    background-color: #9cd768;
}

.btn-secondary {
    background-color: transparent;
    color: #333;
}

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

.highlight {
    color: #b6e288;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cookie-link {
    color: #b6e288;
    text-decoration: underline;
}

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

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #b6e288;
}

.logo a {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.navigation ul {
    display: flex;
    gap: 20px;
}

.navigation a {
    color: #333;
    font-weight: 600;
}

.navigation a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/imgs/1.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    padding: 100px 20px;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Consulting Section */
.consulting {
    background-color: white;
}

.consulting-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.consulting-image,
.consulting-text {
    flex: 1;
}

.consulting-text h2 {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    text-align: center;
    background-color: #f8f8f8;
}

.services h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #b6e288;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price {
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Mentoring Section */
.mentoring {
    background-color: white;
}

.mentoring-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.mentoring-text,
.mentoring-image {
    flex: 1;
}

/* Benefits Section */
.benefits {
    background-color: #f8f8f8;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 40px;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    background-color: #b6e288;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 5px;
    background-color: #f8f8f8;
    text-align: left;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 20px;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: #b6e288;
    font-family: Georgia, serif;
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.author-title {
    color: #666;
    font-style: italic;
}

/* Contact Form */
.contact {
    background-color: #f8f8f8;
    text-align: center;
}

.contact h2 {
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form button {
    margin-top: 20px;
    float: right;
}

/* Thank You Page */
.thank-you {
    background-color: white;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-you button {
    margin-top: 30px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

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

.footer-links a {
    color: white;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consulting-content,
    .mentoring-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .header {
        flex-direction: column;
        text-align: center;
    }
    
    .navigation ul {
        margin-top: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 40px 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}