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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    background-color: #1a1a1a;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

a {
    color: #5fb4d9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header - Logo at top centered */
.header {
    padding: 40px 0 20px;
}

.logo-top {
    text-align: center;
}

.logo {
    max-width: 280px;
    height: auto;
}

/* Hero Section - About + Stats */
.hero-section {
    padding-top: 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-column {
    text-align: left;
}

/* Stats Column */
.stats-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #5fb4d9;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sections */
.section {
    padding: 40px 0;
}

/* Headings */
h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #5fb4d9;
    text-align: left;
}

.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    text-align: left;
    line-height: 1.3;
}

/* Body Text */
p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #ffffff;
    text-align: left;
    line-height: 1.7;
}

/* Services Grid - 3 Columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.service-card {
    text-align: left;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: #5fb4d9;
    flex-shrink: 0;
    margin-top: 3px;
}

.service-card h3 {
    margin: 0;
}

.service-tagline {
    color: #5fb4d9;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
}

.includes-label {
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 25px;
}

.service-card ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0;
}

.service-card li {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

/* Full Width Service Card */
.service-card-full {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-card-full .service-header {
    justify-content: center;
}

.service-card-full h3 {
    text-align: center;
}

.service-card-full .service-tagline {
    color: #5fb4d9;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
    text-align: center;
}

.service-card-full p {
    text-align: center;
}

.service-card-full .includes-label {
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 25px;
    text-align: center;
}

.service-card-full ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-card-full li {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

/* Tagline - Blue, Centered */
.tagline {
    font-size: 26px;
    font-weight: 600;
    color: #5fb4d9;
    text-align: center;
    margin: 60px 0 40px;
}

/* Description */
.description {
    max-width: 100%;
    margin-bottom: 30px;
}

.description p {
    margin-bottom: 20px;
}

/* Other Services - Row 1: 3 columns */
.other-services-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

/* Other Services - Row 2: 2 columns centered */
.other-services-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    max-width: 66%;
    margin-left: auto;
    margin-right: auto;
}

.other-service-card {
    text-align: left;
}

.other-service-card h3 {
    margin-bottom: 10px;
    text-align: center;
}

.other-service-card .service-tagline {
    margin-bottom: 12px;
    text-align: center;
}

/* CTA Centered */
.cta-centered {
    text-align: center;
    padding: 40px 0;
}

/* CTA Button */
.cta-section {
    padding: 30px 0;
    text-align: left;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background-color: #5fb4d9;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #4a9fc4;
    color: #ffffff;
    text-decoration: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 25px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #ffffff;
    text-align: center;
}

.footer a {
    color: #5fb4d9;
}

.social-icon {
    display: inline-block;
    color: #5fb4d9;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #4a9fc4;
}

.copyright {
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}

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

@media (max-width: 900px) {
    .container {
        padding: 0 30px;
    }

    .other-services-row-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .other-services-row-2 {
        max-width: 100%;
    }

    h2 {
        font-size: 32px;
    }
}

@media (max-width: 700px) {
    .services-grid,
    .other-services-row-3,
    .other-services-row-2 {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-column {
        flex-direction: row;
        justify-content: space-around;
        padding-top: 0;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .logo {
        max-width: 200px;
    }

    h2 {
        font-size: 28px;
    }

    .tagline {
        font-size: 20px;
    }

    .service-card-full {
        max-width: 100%;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        padding: 30px 0 50px;
    }

    .service-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
    }
}
