* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 50px;
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

nav a {
    color: #2c4875;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #fdb813;
}

nav a.apply-link::before {
    content: '✓';
    margin-right: 4px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c4875 0%, #1a2e4d 100%);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-truck-sunset.jpg') center/cover;
    opacity: 0.20;
    filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.logo {
    width: 540px;
    margin: 0 auto 35px;
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-tagline span {
    display: block;
    font-size: 34px;
    font-style: italic;
    font-weight: 400;
    margin-top: 3px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.hero-buttons-row {
    display: flex;
    gap: 15px;
    width: 100%;
    align-self: stretch;
}

.hero-buttons-row .btn {
    flex: 1;
}

.btn {
    padding: 13px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-icon-text {
    font-size: 18px;
}

.btn-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.btn-icon-img-small {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.btn-icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-icon-svg-small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-primary {
    background: white;
    color: #2c4875;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.85;
}

/* Opportunities Section */
.opportunities {
    padding: 50px 40px;
    background: white;
    text-align: center;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.opportunity-card {
    background: #2c4875;
    border-radius: 10px;
    padding: 40px 25px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(44, 72, 117, 0.25);
}

.opportunity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(44, 72, 117, 0.4);
}

.opportunity-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: white;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.opportunity-card p {
    font-size: 17px;
    color: white;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 0.8px;
}

.opportunity-card .btn {
    background: white;
    color: #2c4875;
    padding: 11px 22px;
    font-size: 12px;
    margin: 0 auto;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1500px;
    margin: 0 auto;
}

.about-image {
    background: url('business-woman.png') center/cover;
    min-height: 550px;
}

.about-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.heart-icon {
    width: 48px;
    height: 48px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* Info Sections */
.info-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1500px;
    margin: 0 auto;
}

.info-box {
    padding: 50px 40px;
}

.info-box.blue {
    background: #2c4875;
    color: white;
}

.info-box.gray {
    background: #e8e8e8;
    color: #1a1a1a;
}

.info-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 11px;
    padding-left: 20px;
    position: relative;
}

.info-box ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.info-box.blue ul li::before {
    color: #fdb813;
}

.info-box.gray ul li::before {
    color: #2c4875;
}

.stats {
    display: flex;
    gap: 18px;
    margin-top: 32px;
}

.stat-box {
    background: #2c4875;
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.stat-box svg {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* Owner Operator & Benefits */
.owner-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1500px;
    margin: 0 auto;
}

.owner-box {
    background: #1a1a1a;
    color: white;
    padding: 50px 40px;
}

.owner-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
}

.owner-box ul {
    list-style: none;
    margin-bottom: 25px;
}

.owner-box ul li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.owner-box ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #fdb813;
    font-size: 16px;
}

.requirements-box {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.requirements-box ul li {
    color: #1a1a1a;
}

.requirements-box ul li::before {
    color: #1a1a1a;
}

.btn-yellow {
    background: #fdb813;
    color: #1a1a1a;
    padding: 14px 35px;
    font-size: 14px;
    max-width: 320px;
}

.benefits-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f6f6f6;
}

.benefits-image {
    background: url('benefits-person-flipped.jpg') center/cover;
    min-height: 450px;
}

.benefits-content {
    padding: 50px 40px;
}

.benefits-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
}

.benefits-content ul {
    list-style: none;
}

.benefits-content ul li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.benefits-content ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #2c4875;
    font-size: 16px;
}

/* Employee Videos */
.employee-videos {
    padding: 60px 40px;
}

.video-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1500px;
    margin: 0 auto;
}

.video-card {
    border: 2px solid #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-thumbnail {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.video-info {
    background: #2c4875;
    color: white;
    padding: 16px;
    text-align: center;
}

.video-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 4px;
}

.video-info p {
    font-size: 12px;
    margin-bottom: 8px;
}

.video-duration {
    font-size: 13px;
    opacity: 0.9;
}

/* Watch Videos */
.watch-videos {
    padding: 50px 40px;
    text-align: center;
}

.watch-videos h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.btn-play {
    background: #2c4875;
    color: white;
    padding: 16px 50px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: #1a2e4d;
    transform: scale(1.05);
}

/* Driver Requirements */
.driver-requirements {
    padding: 60px 40px;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1300px;
    margin: 0 auto;
}

.requirement-card {
    background: #e8e8e8;
    padding: 42px 25px;
    border-radius: 8px;
}

.requirement-card p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

/* Privacy Section */
.privacy-section {
    background: white;
    padding: 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.privacy-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: #2c4875;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex: 1;
}

.privacy-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.privacy-card p {
    font-size: 15px;
    line-height: 1.8;
    color: white;
    margin-bottom: 15px;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-card ul li {
    font-size: 15px;
    line-height: 1.8;
    color: white;
    margin-bottom: 10px;
}

.privacy-link {
    color: #e8d5b7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: white;
    text-decoration: underline;
}

/* Driver Standards */
.driver-standards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1500px;
    margin: 0 auto;
}

.standards-content {
    background: white;
    padding: 50px 40px;
    position: relative;
}

.decorative-lines {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 180px;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 9px,
        #d0d0d0 9px,
        #d0d0d0 10px
    );
    opacity: 0.4;
}

.standards-box {
    border: 3px solid #2c4875;
    padding: 40px 35px;
    position: relative;
}

.standards-logo {
    width: 110px;
    margin-bottom: 18px;
}

.standards-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #2c4875;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.standards-box ul {
    list-style: none;
}

.standards-box ul li {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
}

.blue-text {
    color: #2c4875;
}

.standards-image {
    background: url('https://images.unsplash.com/photo-1568602471122-7832951cc4c5?w=800&q=80') center/cover;
    min-height: 550px;
    position: relative;
}

.standards-image::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 180px;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 9px,
        rgba(255,255,255,0.3) 9px,
        rgba(255,255,255,0.3) 10px
    );
}

/* Extended Features */
.extended-features {
    padding: 50px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    background: #2c4875;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* Mission Statement */
.mission-statement {
    padding: 60px 40px 40px;
    text-align: center;
}

.mission-statement h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
}

.blue-large {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #2c4875;
    letter-spacing: 1.5px;
    line-height: 1;
}

.black-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #1a1a1a;
    letter-spacing: 2px;
    line-height: 1;
}

.truck-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.truck-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Coverage Section */
.coverage-section {
    background: #f5f5f5;
    padding: 65px 40px;
}

.coverage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    color: #2c4875;
    text-align: left;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 700;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.map-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.coverage-map-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.locations-box {
    display: none;
}

.location-item {
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
    align-items: flex-start;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.location-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    letter-spacing: 0.8px;
}

.location-item p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Lease Purchase */
.lease-purchase {
    padding: 60px 40px;
    text-align: center;
}

.lease-purchase h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 62px;
    color: #2c4875;
    margin-bottom: 26px;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.1;
}

.lease-purchase h2 span {
    display: block;
    font-size: 42px;
}

.btn-inventory {
    background: #2c4875;
    color: white;
    padding: 16px 50px;
    font-size: 17px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lease-subtitle {
    font-size: 15px;
    color: #2c4875;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    background: #f8f8f8;
    padding: 50px 40px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.btn-white {
    background: white;
    color: #2c4875;
    border: 2px solid #d5d5d5;
}

.btn-light {
    background: #e5e5e5;
    color: #2c4875;
    border: 2px solid #c5c5c5;
}

.btn-blue-large {
    background: #2c4875;
    color: white;
    padding: 16px 45px;
    font-size: 16px;
}

/* Perks & Benefits */
.perks-benefits {
    background: #2c4875;
    color: white;
    padding: 60px 40px;
}

.perks-benefits h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.perks-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.perk-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.perk-icon {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.perk-icon svg {
    width: 40px;
    height: 40px;
}

.perk-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.perk-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Safety Standards */
.safety-standards {
    background: white;
    padding: 55px 40px;
}

.safety-standards h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: #2c4875;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 700;
}

.safety-intro {
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 25px;
}

.safety-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.safety-images-centered {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.safety-metrics-img-centered {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
}

/* Apply Here */
.apply-here {
    background: white;
    padding: 55px 40px;
    text-align: center;
}

.apply-here h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    color: #2c4875;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1;
}

.apply-here h2 span {
    display: block;
    font-size: 42px;
}

.apply-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-dark {
    background: #2c4875;
    color: white;
}

.btn-light-gray {
    background: #e5e5e5;
    color: #2c4875;
}

.apply-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Opportunities Footer */
.opportunities-footer {
    background: #f5f5f5;
    padding: 55px 40px;
}

/* Top Page Button */
.top-page-btn {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.btn-top {
    background: #2c4875;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.btn-top:hover {
    background: #1a2e4d;
    transform: translateY(-3px);
}

.btn-top svg {
    width: 32px;
    height: 32px;
}

.top-page-btn span {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2c4875;
    letter-spacing: 1px;
}

/* Contacts */
.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 55px 40px;
    background: white;
}

.contacts-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    color: #2c4875;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.contacts-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    border: none;
}

/* Footer Logo */
.footer-logo {
    background: white;
    padding: 50px 40px;
    text-align: center;
}

.footer-logo svg {
    width: 200px;
    height: auto;
}

/* Social Footer */
.social-footer {
    background: #2c4875;
    padding: 30px 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-link svg {
    width: 28px;
    height: 28px;
}

.social-link.follow-btn {
    background: #2c4875;
    border: 2px solid white;
    padding: 0 25px;
    width: auto;
    gap: 10px;
}

.social-link.follow-btn span {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.social-link.follow-btn svg {
    fill: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .about, .info-sections, .owner-benefits, .driver-standards, .coverage-content, .safety-content, .contacts {
        grid-template-columns: 1fr;
    }
    .video-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .metric-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Universal section padding */
    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Universal image and media containment */
    img, iframe, video {
        max-width: 100%;
        height: auto;
    }
    
    /* Navigation */
    nav {
        padding: 10px 15px;
        gap: 8px;
        flex-wrap: wrap;
    }
    nav a {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    /* Hero Section */
    .logo {
        width: 360px;
        margin-bottom: 20px;
    }
    .hero {
        height: auto;
        min-height: 60vh;
        padding: 30px 15px;
    }
    .hero-tagline {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .hero-tagline span {
        font-size: 20px;
    }
    .hero-buttons {
        max-width: 100%;
        padding: 0 10px;
    }
    .hero-buttons-row {
        flex-direction: column;
        gap: 10px;
    }
    .hero-buttons-row .btn {
        width: 100%;
    }
    .btn {
        padding: 14px 20px;
        font-size: 12px;
    }
    .btn-text small {
        font-size: 10px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    /* Opportunities */
    .opportunities {
        padding: 40px 20px;
    }
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .opportunity-card {
        padding: 30px 15px 24px;
    }
    .opportunity-card h3 {
        font-size: 28px;
    }
    .opportunity-card p {
        font-size: 14px;
    }
    
    /* About Section */
    .about {
        grid-template-columns: 1fr;
    }
    .about-image {
        min-height: 300px;
        order: 2;
    }
    .about-content {
        padding: 35px 20px;
        order: 1;
    }
    .about-title {
        font-size: 32px;
    }
    .about-content p {
        font-size: 15px;
    }
    
    /* Info Sections */
    .info-sections {
        padding: 40px 20px;
    }
    .info-box {
        padding: 35px 25px;
    }
    .info-box h2 {
        font-size: 28px;
    }
    .info-box ul li {
        font-size: 15px;
    }
    
    /* Owner Benefits */
    .owner-benefits {
        padding: 40px 20px;
    }
    .owner-box, .benefits-box {
        padding: 35px 25px;
    }
    .benefits-image {
        min-height: 300px;
    }
    
    /* Driver Requirements */
    .driver-requirements {
        padding: 40px 20px;
    }
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .requirement-card {
        padding: 25px 20px;
    }
    .requirement-card p {
        font-size: 16px;
    }
    
    /* Driver Standards */
    .driver-standards {
        padding: 40px 20px;
    }
    .standards-logo {
        width: 120px;
    }
    .driver-standards h3 {
        font-size: 22px;
    }
    .driver-standards ul li {
        font-size: 15px;
    }
    
    /* Extended Features */
    .extended-features {
        padding: 40px 20px;
    }
    .features-grid {
        gap: 20px;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    .feature-icon {
        margin: 0 0 15px 0;
    }
    .feature-item p {
        font-size: 15px;
    }
    
    /* Mission Statement */
    .mission-statement {
        padding: 40px 20px;
    }
    .mission-statement h2 {
        font-size: 28px;
    }
    .mission-statement p {
        font-size: 15px;
    }
    
    /* Coverage Section */
    .coverage-section {
        padding: 40px 20px;
    }
    .coverage-title {
        font-size: 32px;
    }
    .coverage-map-image {
        max-width: 100%;
    }
    
    /* Lease Purchase */
    .lease-purchase {
        padding: 40px 20px;
    }
    .lease-purchase h2 {
        font-size: 36px;
    }
    .lease-purchase h2 span {
        font-size: 28px;
    }
    .btn-inventory {
        padding: 14px 35px;
        font-size: 15px;
    }
    .lease-subtitle {
        font-size: 13px;
    }
    
    /* Truck Image */
    .truck-image {
        max-width: 100%;
        margin: 20px 0;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 40px 20px;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Perks & Benefits */
    .perks-benefits {
        padding: 40px 20px;
    }
    .perks-benefits h2 {
        font-size: 32px;
    }
    .perks-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .perk-item {
        padding: 20px;
    }
    .perk-item h4 {
        font-size: 16px;
    }
    
    /* Safety Standards */
    .safety-standards {
        padding: 40px 20px;
    }
    .safety-standards h2 {
        font-size: 32px;
    }
    .safety-intro {
        font-size: 15px;
    }
    .safety-subtitle {
        font-size: 16px;
    }
    .safety-images-centered {
        padding: 0 10px;
    }
    .safety-metrics-img-centered {
        max-width: 100%;
    }
    
    /* Apply Here */
    .apply-here {
        padding: 40px 20px;
    }
    .apply-here h2 {
        font-size: 40px;
    }
    .apply-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .apply-subtitle {
        font-size: 13px;
    }
    
    /* Top Page Button */
    .top-page-btn {
        padding: 20px;
    }
    .btn-top {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Contacts */
    .contacts {
        padding: 40px 20px;
    }
    .contacts-info {
        padding: 30px 20px;
    }
    .contacts-info h2 {
        font-size: 32px;
    }
    .contact-block h3 {
        font-size: 18px;
    }
    .contact-block p {
        font-size: 15px;
    }
    .contacts iframe {
        height: 300px;
    }
    
    /* Footer Logo */
    .footer-logo {
        padding: 30px 20px;
    }
    .footer-logo svg {
        width: 140px;
    }
    
    /* Social Footer */
    .social-footer {
        padding: 30px 20px;
    }
    .social-icons {
        flex-direction: column;
        gap: 12px;
    }
    .social-link {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .social-link.follow-btn {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .logo {
        width: 300px;
    }
    .hero-tagline {
        font-size: 28px;
    }
    .hero-tagline span {
        font-size: 18px;
    }
    .section-title {
        font-size: 24px;
    }
    .btn {
        padding: 12px 18px;
        font-size: 11px;
    }
    nav a {
        font-size: 10px;
        padding: 5px 8px;
    }
    .about-title {
        font-size: 28px;
    }
    .heart-icon svg {
        width: 35px;
        height: 35px;
    }
}
