/* 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: #000;
}

/* Header */
.header {
    background-color: #000;
    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;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand {
    text-decoration: none;
}

.nav-brand h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8B5CF6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    padding: 120px 2rem 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.hero-content > div:first-child {
    flex: 1;
}

.hero h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
}

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

/* CTA Button */
.cta-button {
    background-color: #B91C1C;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #991B1B;
    transform: translateY(-2px);
}

/* About Section */
.about {
    background-color: #000;
    padding: 80px 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.about-text {
    flex: 1;
    color: #fff;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #fff;
}

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

/* Stats Section */
.stats {
    background-color: #111;
    padding: 80px 2rem;
    text-align: center;
}

.stats h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* History Section */
.history {
    background-color: #000;
    padding: 80px 2rem;
}

.history-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.history-text {
    flex: 1;
    color: #fff;
}

.history-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.history-text p {
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.7;
}

.history-image {
    flex: 1;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Services Section */
.services {
    background-color: #111;
    padding: 80px 2rem;
}

.services h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
}

.service-strategy {
    background-color: #B91C1C;
}

.service-process {
    background-color: #059669;
}

.service-change {
    background-color: #DC2626;
}

.service-coaching {
    background-color: #7C3AED;
}

.service-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    padding: 80px 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.contact-text {
    flex: 1;
    color: #fff;
}

.contact-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input,
form textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background-color: rgba(255, 255, 255, 0.9);
}

form input:focus,
form textarea:focus {
    outline: none;
    background-color: #fff;
}

form button {
    align-self: flex-start;
    margin-top: 1rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 2rem 0;
    border-top: 1px solid #333;
}

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

.footer-brand h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 1.5rem;
    border-top: 1px solid #333;
    z-index: 1001;
    display: none;
}

.cookie-popup.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 {
    color: #fff;
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.decline {
    background-color: #DC2626;
    color: #fff;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-link {
    color: #8B5CF6;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        display: none;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 100px 1rem 60px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .history-content,
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about,
    .history,
    .contact {
        padding: 60px 1rem;
    }
    
    .stats {
        padding: 60px 1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services {
        padding: 60px 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3,
    .history-text h3,
    .contact-text h3,
    .stats h3,
    .services h3 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .cookie-popup {
        padding: 1rem;
    }
}

.legal {
    align-items: flex-start;
    gap: 12px;
}

.legal h2 {
    text-align: left !important;
}

.legal p {
    text-align: left !important;
}

.legal ul li {
    text-align: left !important;
    color: #fff;
}