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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 8%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 1.5rem;
    color: #5d3b9c;
    margin-bottom: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #5d3b9c;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('./assets/1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 10rem 8% 6rem;
    text-align: center;
    margin-top: 4rem;
}

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

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.cta-button {
    display: inline-block;
    background-color: #8e4cef;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #7038cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 76, 239, 0.3);
}

/* Strategic Partner Section */
.strategic-partner {
    display: flex;
    padding: 5rem 8%;
    background-color: #fff;
}

.partner-content {
    flex: 1;
    padding-right: 3rem;
}

.partner-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.strategic-partner h2 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.strategic-partner p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

/* What We Do Section */
.what-we-do {
    background-color: #f9f9f9;
    padding: 5rem 8%;
    text-align: center;
}

.what-we-do h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.what-we-do > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Success Metrics Section */
.success-metrics {
    display: flex;
    padding: 5rem 8%;
    background-color: #fff;
}

.metrics-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.metrics-content {
    flex: 1;
    padding-left: 3rem;
}

.metrics-content h2 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.metrics-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

blockquote {
    border-left: 3px solid #8e4cef;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-style: normal;
    color: #888;
}

/* Our Advantages Section */
.advantages {
    background-color: #f9f9f9;
    padding: 5rem 8%;
    text-align: center;
}

.advantages h2 {
    font-size: 1.75rem;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    padding: 2rem;
    border-radius: 8px;
    color: white;
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.purple-light {
    background-color: #9b6dff;
}

.purple-med {
    background-color: #8e4cef;
}

.purple-dark {
    background-color: #7038cc;
}

/* FAQ Section */
.faq {
    padding: 5rem 8%;
    background-color: #fff;
}

.faq h2 {
    font-size: 1.75rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('./assets/4.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 8%;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #8e4cef;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #7038cc;
}

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h2 {
    font-size: 1.5rem;
    color: #5d3b9c;
    margin-bottom: 0;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #555;
    margin-left: 1.5rem;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem;
    display: none;
}

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

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #555;
}

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

.cookie-button {
    background-color: #8e4cef;
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    background-color: #7038cc;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .strategic-partner,
    .success-metrics {
        flex-direction: column;
    }
    
    .partner-content,
    .metrics-content {
        padding: 0;
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    .hero,
    .strategic-partner,
    .what-we-do,
    .success-metrics,
    .advantages,
    .faq,
    .cta-section,
    footer {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .footer-links a {
        margin: 0 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    nav {
        display: none;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .strategic-partner h2,
    .what-we-do h2,
    .metrics-content h2,
    .advantages h2,
    .faq h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }
}
main{
    padding: 10rem 8% 6rem;
}