/* 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 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: #5e0841;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: #666;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    border-radius: 100px;
    background: linear-gradient(180deg, #DE36BC 0%, #5F003C 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #7d1659;
}

.btn-secondary {
    background-color: transparent;
    color: #9c1c70;
    border: 1px solid #9c1c70;
}

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

/* Header Styles */
header {
    background: linear-gradient(180deg, #5F003C 0%, #390024 100%);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: #5e0841;
    color: #fff;
    padding: 100px 0;
    background-image:  url('./assets/bg.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
}
.hero-content h1 {
    color: #fff;
}

.hero p {
    color: #f1f1f1;
    margin-bottom: 30px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-item {
    margin-bottom: 30px;
    border-left: 3px solid #9c1c70;
    padding-left: 20px;
}

/* About Section */
.about {
    background-color: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

/* Growth Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #9c1c70;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Business Mindset Section */
.mindset-items {
    margin-top: 40px;
}

.mindset-item {
    margin-bottom: 30px;
    border-left: 3px solid #9c1c70;
    padding-left: 20px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.offices {
    margin-top: 30px;
}

.office {
    margin-bottom: 30px;
}

.office h3 {
    color: #9c1c70;
}

.office p {
    margin-bottom: 10px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
}

.footer-link {
    margin-left: 20px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    z-index: 999;
    max-width: 400px;
    width: 90%;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: fadeIn 0.5s;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-image,
    .about-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #5e0841;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 101;
    }

    .menu.active {
        right: 0;
    }

    .menu li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 102;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 60px 0;
    }

    section {
        padding: 60px 0;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 50px 0;
    }

    section {
        padding: 50px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}