/* Landscape Course CSS Styles - Enhanced Font Sizes */

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

/* Base font size */
html {
    font-size: 16px;
}

/* ================================================ */
/* LANDSCAPE COURSE SECTION */
/* ================================================ */

.marshall-landscape-course {
    background-color: #ffffff;
    padding: 90px 0; /* Increased from 80px */
    font-family: 'Lancelot', cursive, serif;
}

.marshall-landscape-course-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marshall-landscape-course-content {
    max-width: 1100px;
    margin: 0 auto;
}

.marshall-landscape-course-title {
    color: #333;
    font-size: 3.125rem; /* Increased from 3rem (50px) - Large title */
    font-weight: 500;
    margin-bottom: 45px; /* Increased from 40px */
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.marshall-landscape-course-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #5ca7db;
}

.marshall-landscape-course-main {
    display: flex;
    align-items: flex-start;
    gap: 55px; /* Increased from 50px */
    margin-bottom: 55px; /* Increased from 50px */
}

.marshall-landscape-course-text {
    flex: 2;
}

.marshall-landscape-course-image {
    flex: 1;
    max-width: 400px;
}

.marshall-landscape-course-subtitle {
    color: #333;
    font-size: 1.5625rem; /* Increased from 1.5rem (25px) */
    font-weight: 500;
    margin-bottom: 18px; /* Increased from 15px */
    position: relative;
    padding-bottom: 10px;
}

.marshall-landscape-course-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #5ca7db;
}

.marshall-landscape-course-intro {
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
    color: #5ca7db;
    font-weight: 500;
    margin-bottom: 22px; /* Increased from 20px */
    font-style: italic;
}

.marshall-landscape-course-description {
    font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
    color: #333;
    line-height: 1.7;
    margin-bottom: 35px; /* Increased from 30px */
}

.marshall-landscape-course-table-wrapper {
    margin-bottom: 35px; /* Increased from 30px */
}

.marshall-landscape-course-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.marshall-landscape-course-table tr {
    border-bottom: 1px solid #e9ecef;
}

.marshall-landscape-course-table tr:last-child {
    border-bottom: none;
}

.marshall-landscape-course-table tr:nth-child(even) {
    background-color: #ffffff;
}

.marshall-landscape-course-cell-label {
    padding: 18px 22px; /* Increased from 15px 20px */
    font-weight: 500;
    color: #333;
    font-size: 1.0625rem; /* Increased from 1rem (17px) */
    background-color: #e8e8e8;
    width: 35%;
    vertical-align: top;
}

.marshall-landscape-course-cell-value {
    padding: 18px 22px; /* Increased from 15px 20px */
    color: #555;
    font-size: 1.0625rem; /* Increased from 1rem (17px) */
    line-height: 1.5;
    vertical-align: top;
}

.marshall-landscape-course-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.marshall-landscape-course-image img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.marshall-landscape-course-cta {
    text-align: center;
    margin-top: 45px; /* Increased from 40px */
    padding: 35px; /* Increased from 30px */
    background-color: #e8e8e8;
    border-radius: 8px;
}

.marshall-landscape-course-button {
    background-color: #5ca7db;
    color: white;
    font-family: 'Lancelot', cursive, serif;
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
    font-weight: 500;
    padding: 20px 45px; /* Increased from 18px 40px */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(92, 167, 219, 0.3);
    text-decoration: none;
    display: inline-block;
    min-height: 44px; /* Ensures proper touch target */
}

.marshall-landscape-course-button:hover {
    background-color: #4a94c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 167, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* ================================================ */
/* RESPONSIVE BREAKPOINTS */
/* ================================================ */

/* Large Tablet Styles (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .marshall-landscape-course {
        padding: 80px 0; /* Increased from 70px */
    }
    
    .marshall-landscape-course-container {
        padding: 0 30px;
    }
    
    .marshall-landscape-course-title {
        font-size: 2.8125rem; /* Increased from 2.7rem (45px) */
        margin-bottom: 40px; /* Increased from 35px */
    }
    
    .marshall-landscape-course-subtitle {
        font-size: 1.4375rem; /* Increased from 1.375rem (23px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-landscape-course-intro {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-landscape-course-description {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 30px; /* Increased from 25px */
    }
    
    .marshall-landscape-course-main {
        gap: 45px; /* Increased from 40px */
        margin-bottom: 50px; /* Increased from 45px */
    }
    
    .marshall-landscape-course-cell-label,
    .marshall-landscape-course-cell-value {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        padding: 15px 20px; /* Increased from 13px 18px */
    }
    
    .marshall-landscape-course-cell-label {
        width: 38%;
    }
    
    .marshall-landscape-course-button {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        padding: 18px 40px; /* Increased from 16px 36px */
    }
    
    .marshall-landscape-course-cta {
        padding: 32px; /* Increased from 28px */
        margin-top: 40px; /* Increased from 35px */
    }
}

/* Small Tablet Styles (481px - 768px) */
@media (max-width: 768px) {
    .marshall-landscape-course {
        padding: 70px 0; /* Increased from 60px */
    }
    
    .marshall-landscape-course-container {
        padding: 0 20px;
    }
    
    .marshall-landscape-course-title {
        font-size: 2.5rem; /* Increased from 2.4rem (40px) */
        margin-bottom: 35px; /* Increased from 30px */
    }
    
    .marshall-landscape-course-subtitle {
        font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-landscape-course-intro {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-landscape-course-description {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        margin-bottom: 30px; /* Increased from 25px */
    }
    
    .marshall-landscape-course-main {
        flex-direction: column;
        gap: 35px; /* Increased from 30px */
        margin-bottom: 45px; /* Increased from 40px */
    }
    
    .marshall-landscape-course-text,
    .marshall-landscape-course-image {
        width: 100%;
        max-width: 100%;
    }
    
    .marshall-landscape-course-cell-label {
        width: 40%;
        font-size: 0.9375rem; /* Increased from 0.875rem (15px) */
        padding: 14px 18px; /* Increased from 12px 15px */
    }
    
    .marshall-landscape-course-cell-value {
        font-size: 0.9375rem; /* Increased from 0.875rem (15px) */
        padding: 14px 18px; /* Increased from 12px 15px */
    }
    
    .marshall-landscape-course-button {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        padding: 18px 36px; /* Increased from 16px 32px */
    }
    
    .marshall-landscape-course-cta {
        padding: 30px; /* Increased from 25px */
        margin-top: 40px; /* Increased from 35px */
    }
}

/* Mobile Styles (≤ 480px) */
@media (max-width: 480px) {
    .marshall-landscape-course {
        padding: 60px 0; /* Increased from 50px */
    }
    
    .marshall-landscape-course-container {
        padding: 0 20px; /* Increased from 15px for small margins */
    }
    
    .marshall-landscape-course-title {
        font-size: 2.25rem; /* Increased from 2.125rem (36px) */
        margin-bottom: 35px; /* Increased from 30px */
        line-height: 1.3;
    }
    
    .marshall-landscape-course-subtitle {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 12px; /* Increased from 10px */
        text-align: center;
    }
    
    .marshall-landscape-course-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .marshall-landscape-course-intro {
        font-size: 1.03125rem; /* Increased from 0.9375rem (16.5px) */
        text-align: center;
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-landscape-course-description {
        font-size: 0.96875rem; /* Increased from 0.875rem (15.5px) */
        text-align: center;
        margin-bottom: 25px; /* Increased from 20px */
    }
    
    .marshall-landscape-course-main {
        gap: 30px; /* Increased from 25px */
        margin-bottom: 40px; /* Increased from 35px */
        text-align: center;
    }
    
    .marshall-landscape-course-table-wrapper {
        margin-bottom: 30px; /* Increased from 25px */
    }
    
    .marshall-landscape-course-cell-label {
        width: 45%;
        font-size: 0.875rem; /* Increased from 0.8125rem (14px) */
        padding: 12px 15px; /* Increased from 10px 12px */
    }
    
    .marshall-landscape-course-cell-value {
        font-size: 0.875rem; /* Increased from 0.8125rem (14px) */
        padding: 12px 15px; /* Increased from 10px 12px */
    }
    
    .marshall-landscape-course-button {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        padding: 18px 35px; /* Increased from 15px 30px */
        min-height: 44px; /* Ensures proper touch target */
    }
    
    .marshall-landscape-course-cta {
        padding: 25px; /* Increased from 20px */
        margin-top: 35px; /* Increased from 30px */
    }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
    .marshall-landscape-course-container {
        padding: 0 18px; /* Increased from 12px for better margins */
    }
    
    .marshall-landscape-course-title {
        font-size: 2.0625rem; /* Increased from 1.95rem (33px) */
        margin-bottom: 30px; /* Increased from 25px */
    }
    
    .marshall-landscape-course-subtitle {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 10px; /* Increased from 8px */
    }
    
    .marshall-landscape-course-intro {
        font-size: 0.9375rem; /* Increased from 0.875rem (15px) */
        margin-bottom: 18px; /* Increased from 15px */
    }
    
    .marshall-landscape-course-description {
        font-size: 0.875rem; /* Increased from 0.8125rem (14px) */
        margin-bottom: 22px; /* Increased from 18px */
    }
    
    .marshall-landscape-course-cell-label,
    .marshall-landscape-course-cell-value {
        font-size: 0.8125rem; /* Increased from 0.75rem (13px) */
        padding: 10px 12px; /* Increased from 8px 10px */
    }
    
    .marshall-landscape-course-button {
        font-size: 0.9375rem; /* Increased from 0.875rem (15px) */
        padding: 16px 30px; /* Increased from 14px 26px */
    }
    
    .marshall-landscape-course-cta {
        padding: 22px; /* Increased from 18px */
        margin-top: 30px; /* Increased from 25px */
    }
}