 /* Reset CSS */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Common Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: #ffe082;
    color: #222;
}

.btn-primary:hover {
    background-color: #ffca28;
}

.btn-secondary {
    background-color: #b3e5fc;
    color: #222;
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/* Header */
.header {
    background-color: #222;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 20px 20px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

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

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

.nav-menu a:hover {
    color: #ffe082;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: stretch;
    padding: 40px 0;
}

.hero-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    flex: 1;
    background-color: #ffe082;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.hero-content p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.hero-btn {
    align-self: center;
}

/* Process Section */
.process {
    padding: 60px 0;
}

.process-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.process-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-card:first-child {
    background: url('imgs/2.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 16px;
}

.process-btn {
    margin: 0 auto;
    display: block;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #e3f2fd;
    border-radius: 20px;
    margin: 60px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.about-content .tagline {
    font-weight: 600;
    margin-top: 30px;
}

/* Strategic Steps Section */
.strategic-steps {
    padding: 60px 0;
    background-color: #f5f5f5;
    border-radius: 20px;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.steps-content {
    flex: 1;
}

.steps-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.step-card {
    padding: 20px;
    border-radius: 10px;
}

.step-card:nth-child(1) {
    background-color: #fff;
}

.step-card:nth-child(2) {
    background-color: #ffe082;
}

.step-card:nth-child(3) {
    background-color: #fff;
}

.step-card:nth-child(4) {
    background-color: #fff;
}

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

.step-card p {
    font-size: 14px;
}

.steps-image {
    flex: 1;
}

.steps-image img {
    width: 100%;
    border-radius: 10px;
}

/* Solutions Section */
.solutions {
    padding: 60px 0;
}

.solutions-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.solution-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 15px;
}

.solutions-btn {
    margin: 0 auto;
    display: block;
}

/* Digital Investment Section */
.digital-investment {
    padding: 60px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.investment-image {
    flex: 1;
}

.investment-image img {
    width: 100%;
    border-radius: 10px;
}

.investment-content {
    flex: 1;
}

.investment-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.investment-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.reasons-list {
    margin-top: 30px;
}

.reason-item {
    margin-bottom: 15px;
}

.reason-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.reason-item p {
    font-size: 15px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #ffe082;
    border-radius: 20px;
    margin-bottom: 60px;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
}

.office-info {
    flex: 1;
    padding: 0 20px;
}

.office-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.office-address {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-map {
    flex: 1;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.footer-copyright {
    font-size: 14px;
    color: #aaa;
}

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

.cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.cookie-title {
    font-size: 18px;
    font-weight: 600;
}

.cookie-text {
    margin-bottom: 20px;
    font-size: 14px;
}

.cookie-text ul {
    margin-left: 20px;
    margin-top: 10px;
}

.cookie-text li {
    margin-bottom: 5px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    padding: 12px;
    border-radius: 30px;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: #b3e5fc;
    color: #222;
    border: none;
}

.cookie-btn-reject {
    background-color: transparent;
    color: #222;
    border: 1px solid #ddd;
}

.cookie-hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-image, .hero-content {
        width: 100%;
    }

    .about-container, .steps-container, .digital-investment {
        flex-direction: column;
    }

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

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #222;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}