* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    color: #333;
    width: 100%;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 20px;
    color: #333;
    text-decoration: none;
}

.logo-icon {
    width: 20px;
    height: 20px;
    background: #4A90E2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
}

.nav-links {
    display: none; /* Hide on mobile */
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 30px;
    }
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.hero {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
}

.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #2C3E50;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.services {
    padding: 40px 20px;
    background: #2C3E50;
    color: white;
    width: 100%;
}

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

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.service-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
    width: 100%;
}
.service-item2 p {
    color: #878787;
    line-height: 1.6;
    font-size: 16px;
}

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

.service-item h3 {
    color: #4A90E2;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-item p {
    color: #ECF0F1;
    line-height: 1.6;
    font-size: 16px;
}

.approach {
    padding: 40px 20px;
    background: #f8f9fa;
    width: 100%;
}

.approach h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2C3E50;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.contact-form {
    padding: 40px 20px;
    background: #4A90E2;
    color: white;
    text-align: center;
    width: 100%;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.form-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: white;
}

.submit-button {
    background: #2C3E50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

footer {
    padding: 20px;
    background: #2C3E50;
    color: #ECF0F1;
    text-align: center;
    width: 100%;
}


/*------- Footer -------*/

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

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


/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .navbar {
        padding: 20px 10%;
    }

    .hero {
        padding: 80px 10%;
        flex-direction: row;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .services,
    .approach {
        padding: 80px 10%;
    }

    .services-grid,
    .approach-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .cta-button {
        width: auto;
    }

    .contact-form {
        padding: 60px 10%;
    }

    .form-container {
        max-width: 600px;
    }

    .submit-button {
        width: auto;
    }
}