﻿body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.6;
    color: #000;
    margin-top: 100px;
}

.atlas-oil-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
/* Headings */
.atlas-main-title {
    color: #0e64c8;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.atlas-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

.atlas-section-title {
    color: #0e64c8;
    font-size: 22px;
    margin: 40px 0 20px;
}
/* Intro Text */
.atlas-intro-paragraph {
    font-weight: 700;
    margin-bottom: 30px;
}
/* Benefits Section */
.atlas-benefits-list {
    margin-bottom: 30px;
}

.atlas-benefit-item {
    margin-bottom: 15px;
}

.atlas-benefit-icon {
    font-size: 20px;
    margin-right: 8px;
}

.atlas-benefit-heading {
    font-weight: 700;
    margin-right: 5px;
    color: #000;
}
/* Steps Section */
.atlas-steps-list {
    margin-bottom: 30px;
}

.atlas-step-item {
    margin-bottom: 15px;
}

.atlas-step-icon {
    font-size: 20px;
    margin-right: 8px;
}

.atlas-step-heading {
    font-weight: 700;
    margin-right: 5px;
    color: #000;
}
/* Contact Info */
.atlas-contact-info {
    margin: 30px 0;
}

.atlas-email-label {
    font-weight: 700;
    margin-right: 5px;
    color: #000;
}

.atlas-email-address {
    color: #0e64c8;
    text-decoration: none;
    font-weight: 500;
}

    .atlas-email-address:hover {
        text-decoration: underline;
    }
/* Tagline */
.atlas-company-tagline {
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}
/* CTA Button */
.atlas-action-button {
    display: inline-block;
    background-color: #0e64c8;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #0e64c8;
    transition: all 0.3s ease;
}

    .atlas-action-button:hover {
        background-color: white;
        color: #0e64c8;
    }
/* Mobile Portrait */
@media (max-width: 768px) and (orientation: portrait) {
    body {
        margin-top: 80px;
    }

    .atlas-main-title {
        font-size: 28px;
    }

    .atlas-subtitle {
        font-size: 20px;
    }

    .atlas-section-title {
        font-size: 18px;
    }

    .atlas-oil-container {
        padding: 20px 15px;
    }

    .atlas-benefit-item, .atlas-step-item {
        margin-bottom: 20px;
    }

    .atlas-action-button {
        width: 80%;
        padding: 10px 15px;
    }
}
/* Mobile Landscape */
@media (max-width: 846px) and (orientation: landscape) {
    body {
        margin-top: 80px;
    }

    .atlas-main-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .atlas-subtitle {
        font-size: 18px;
    }

    .atlas-section-title {
        margin: 25px 0 15px;
    }

    .atlas-oil-container {
        padding: 15px;
    }

    .atlas-benefit-item, .atlas-step-item {
        margin-bottom: 12px;
    }
}
/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: portrait) {
    body {
        margin-top: 80px;
    }

    .atlas-main-title {
        font-size: 32px;
    }

    .atlas-oil-container {
        max-width: 90%;
    }

    .atlas-intro-paragraph {
        padding: 0 15px;
    }
}
/* Tablet Landscape */
@media only screen and (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
    body {
        margin-top: 80px;
    }

    .atlas-oil-container {
        max-width: 85%;
    }

    .atlas-benefit-item, .atlas-step-item {
        margin-bottom: 18px;
    }
}
