/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Header and Navigation */
header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

nav .logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-grow: 1;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav .cta-button {
    background-color: #ff6f00;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .cta-button {
    background-color: #ff6f00;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    margin-right: 1rem;
}

.hero .cta-button-secondary {
    background-color: transparent;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    border: 2px solid white;
}

/* Sections */
section {
    padding: 2rem;
    max-width: 1100px;
    margin: auto;
}

.intro, .about-us, .contact-form, .core-advantages {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
}

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

.service {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

/* Core Advantages Section */
.core-advantages h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.advantage-item .advantage-icon {
    background-color: #eaf2fa;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage-item .advantage-icon svg {
    width: 40px;
    height: 40px;
    color: #2c3e50;
}

.advantage-item h4 {
    margin-bottom: 0.5rem;
}


/* Trust Signals */
.trust-signals {
    text-align: center;
}

/* About Us */

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
}
