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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a1a;
}

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

/* Header */
.header {
    background: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9500;
    text-decoration: none;
}

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

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

.nav-link:hover {
    color: #ff9500;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #1a1a1a;
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-illustration {
    
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.cta-button {
    background: #ff9500;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #e6850e;
}

/* Capital Work Section */
.capital-work {
    background: #1a1a1a;
    padding: 80px 0;
}

.capital-work-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.capital-work-text {
    flex: 1;
}

.capital-work-text h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: #ff9500;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.capital-work-text p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.capital-work-features {
    list-style: none;
    color: #ccc;
    line-height: 1.8;
}

.capital-work-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.capital-work-features li:before {
    content: "•";
    color: #ff9500;
    position: absolute;
    left: 0;
}

.capital-work-image {
    flex: 1;
}

.capital-work-image img {
    width: 100%;
    height: auto;
    border-radius: 65px;
}

/* Learning Section */
.learning-section {
    background: #ff9500;
    padding: 80px 0;
}

.learning-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.learning-image {
    flex: 1;
}

.learning-image img {
    width: 100%;
    height: auto;
    border-radius: 60px;

}

.learning-text {
    flex: 1;
}

.learning-text h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.learning-text p {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: #1a1a1a;
    padding: 80px 0;
}

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

.service-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    border: 1px solid #333;
}

.service-icon {    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon img {
    border-radius: 12px;
}

.service-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-coach {
    color: #ff9500;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #ccc;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "•";
    color: #ff9500;
    position: absolute;
    left: 0;
}

.service-price {
    background: #ff9500;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.contact-section h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-section p {
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #2a2a2a;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #ff9500;
}

.submit-button {
    width: 100%;
    background: #ff9500;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #e6850e;
}

/* Footer */
.footer {
    background: #0d0d0d;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

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

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

.footer-links a:hover {
    color: #ff9500;
}

.footer p {
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff9500;
    color: #fff;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-accept {
    background: #fff;
    color: #ff9500;
}

.cookie-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #333;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-link {
        padding: 0.5rem 0;
        border-bottom: 1px solid #333;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .capital-work-content,
    .learning-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .capital-work-text h2,
    .learning-text h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .capital-work-text h2,
    .learning-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .hero-illustration,
    .capital-work-image,
    .learning-image {
        padding: 1rem;
    }
}