 /* Reset and base styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

ul {
    list-style: none;
}

/* Cookie consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f5f5f5;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.cookie-banner p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

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

.cookie-accept {
    background-color: #9e2a2b;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    flex: 1;
}

.cookie-reject {
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    flex: 1;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
}

.logo-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
}

.logo-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000;
}

.logo-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #000;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav li {
    font-weight: 500;
}

.contact-btn {
    background-color: #9e2a2b;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* Hero section */
.hero {
    height: 500px;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-text {
    color: white;
    padding: 0 5%;
    width: 50%;
    position: absolute;
    right: 0;
    text-align: right;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* About section */
.about {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    color: #9e2a2b;
}

.about-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 20px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: #9e2a2b;
    font-weight: 600;
    background-color: transparent;
    border: 2px solid #9e2a2b;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.learn-more span {
    margin-right: 10px;
}

.learn-more svg {
    width: 20px;
    height: 20px;
}

.about-circles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.circle {
    border-radius: 50%;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 1;
}

.circle h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.circle-purple {
    background-color: #b14e9b;
}

.circle-blue {
    background-color: #3f51b5;
}

.circle-red {
    background-color: #9e2a2b;
}

/* Services section */
.services {
    padding: 60px 5%;
    background-color: #6d1a1b;
    color: white;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    margin-bottom: 40px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-image {
    margin-top: 20px;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-image-1 {
    background-image: url('./imgs/2.png');
}

.service-image-2 {
    background-image: url('./imgs/3.png');
}

.service-image-3 {
    background-image: url('./imgs/4.png');
}

/* Strategic Growth section */
.growth {
    padding: 60px 5%;
}

.growth h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.growth p {
    margin-bottom: 20px;
    max-width: 800px;
}

/* Contact form */
.contact {
    padding: 40px 5%;
    background-color: #6d1a1b;
    color: white;
}

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

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

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
}

input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #9e2a2b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

/* Footer */
footer {
    padding: 20px 5%;
    background-color: #6d1a1b;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
    }

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

    .hero-text {
        width: 80%;
        text-align: center;
        right: 10%;
    }

    nav ul {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text {
        width: 100%;
        padding: 0 20px;
        right: 0;
    }

    .about-circles {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 20px;
    }
}