html {
    scroll-behavior: smooth;
}
body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #ddd;
}

/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    height: 116px;
    width: auto;
}

.brand-text h1 {
    margin: 0;
    color: #cc3333;
    font-size: 28px;
}

.brand-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Navigation */
nav a {
    text-decoration: none;
    color: #333;
    margin-left: 25px;
    font-weight: bold;
}

nav a:hover {
    color: #ff5a5a;
}
/* Hero Section */
.hero {
    background-color: #f8f8f8;
    padding: 100px 60px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

.hero h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-button {
    display: inline-block;
    background-color: #ff5a5a;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: bold;
}

.hero-button:hover {
    background-color: #cc3333;
}

/* Shared container */
.container {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #222;
}

.about p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* Grid layout */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* Individual cards */
.service-card {
    background-color: white;
    padding: 30px;
    width: 380px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.service-card h3 {
    color: #ff5a5a;
    margin-top: 0;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Expertise Section */
.expertise {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.expertise h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.expertise-item {
    width: 280px;
    padding: 20px;
    border-left: 4px solid #cc3333;
    text-align: left;
    background-color: #fafafa;
}

.expertise-item h3 {
    margin-top: 0;
    color: #cc3333;
}

.expertise-item p {
    color: #555;
    line-height: 1.6;
}

/* Careers Section */
.careers {
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.careers h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.careers p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 20px;
}

.career-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: #cc3333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.career-button:hover {
    background-color: #a82828;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    text-align: center;
    background-color: white;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.contact a {
    color: #cc3333;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}