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

/* ================================================ */
/* REVIEWS PAGE SECTION - Enhanced Font Sizes */
/* ================================================ */

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

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

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

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

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

.marshall-reviews-subtitle {
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) - Body text */
    color: #555;
    text-align: center;
    margin-bottom: 55px; /* Increased from 50px */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.marshall-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px; /* Increased from 30px */
}

.marshall-review-item {
    background-color: #ffffff;
    padding: 35px 30px; /* Increased from 30px 25px */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #5ca7db;
    text-align: center;
}

.marshall-review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.marshall-review-stars {
    margin-bottom: 25px; /* Increased from 20px */
}

.marshall-star {
    color: #ffd700;
    font-size: 1.625rem; /* Increased from 1.5rem (26px) */
    margin-right: 3px; /* Increased from 2px */
}

.marshall-review-name {
    color: #333;
    font-size: 1.3125rem; /* Increased from 1.25rem (21px) - Body text */
    font-weight: 500;
    margin-bottom: 18px; /* Increased from 15px */
    line-height: 1.3;
}

.marshall-review-text {
    color: #555;
    font-size: 1.1875rem; /* Increased from 1.125rem (19px) - Secondary text */
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

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

/* Large Tablet Styles (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .marshall-reviews-page {
        padding: 80px 0; /* Increased from 70px */
    }
    
    .marshall-reviews-container {
        padding: 0 30px;
    }
    
    .marshall-reviews-title {
        font-size: 2.8125rem; /* Increased from 2.7rem (45px) */
        margin-bottom: 22px; /* Increased from 18px */
    }
    
    .marshall-reviews-subtitle {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 50px; /* Increased from 45px */
    }
    
    .marshall-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px; /* Increased from 25px */
    }
    
    .marshall-review-item {
        padding: 32px 26px; /* Increased from 28px 22px */
    }
    
    .marshall-star {
        font-size: 1.4375rem; /* Increased from 1.375rem (23px) */
        margin-right: 2px;
    }
    
    .marshall-review-name {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-bottom: 16px; /* Increased from 13px */
    }
    
    .marshall-review-text {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
    }
    
    .marshall-review-stars {
        margin-bottom: 22px; /* Increased */
    }
}

/* Small Tablet Styles (481px - 768px) */
@media (max-width: 768px) {
    .marshall-reviews-page {
        padding: 70px 0; /* Increased from 60px */
    }
    
    .marshall-reviews-container {
        padding: 0 20px;
    }
    
    .marshall-reviews-title {
        font-size: 2.5rem; /* Increased from 2.4rem (40px) */
        margin-bottom: 20px; /* Increased from 18px */
    }
    
    .marshall-reviews-subtitle {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 45px; /* Increased from 40px */
    }
    
    .marshall-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px; /* Increased from 25px */
    }
    
    .marshall-review-item {
        padding: 30px 25px; /* Increased from 25px 20px */
    }
    
    .marshall-star {
        font-size: 1.3125rem; /* Increased from 1.25rem (21px) */
        margin-right: 2px;
    }
    
    .marshall-review-name {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-review-text {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
    }
    
    .marshall-review-stars {
        margin-bottom: 22px; /* Increased */
    }
}

/* Mobile Styles (≤ 480px) */
@media (max-width: 480px) {
    .marshall-reviews-page {
        padding: 60px 0; /* Increased from 50px */
    }
    
    .marshall-reviews-container {
        padding: 0 20px; /* Increased from 15px for small margins */
    }
    
    .marshall-reviews-title {
        font-size: 2.25rem; /* Increased from 2.125rem (36px) */
        margin-bottom: 20px; /* Increased from 15px */
    }
    
    .marshall-reviews-subtitle {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        margin-bottom: 40px; /* Increased from 35px */
    }
    
    .marshall-reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px; /* Increased from 20px */
    }
    
    .marshall-review-item {
        padding: 28px 22px; /* Increased from 22px 18px */
    }
    
    .marshall-star {
        font-size: 1.1875rem; /* Increased from 1.125rem (19px) */
        margin-right: 2px; /* Increased from 1px */
    }
    
    .marshall-review-name {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-bottom: 15px; /* Increased from 12px */
    }
    
    .marshall-review-text {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
    }
    
    .marshall-review-stars {
        margin-bottom: 20px; /* Increased */
    }
}

/* Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {
    .marshall-reviews-container {
        padding: 0 18px; /* Increased from 12px for better margins */
    }
    
    .marshall-reviews-title {
        font-size: 2.0625rem; /* Increased from 1.95rem (33px) */
        margin-bottom: 18px; /* Increased from 12px */
    }
    
    .marshall-reviews-subtitle {
        font-size: 0.9375rem; /* Increased from 0.875rem (15px) */
        margin-bottom: 35px; /* Increased from 30px */
    }
    
    .marshall-reviews-grid {
        gap: 22px; /* Increased from 18px */
    }
    
    .marshall-review-item {
        padding: 25px 20px; /* Increased from 20px 16px */
    }
    
    .marshall-star {
        font-size: 1.0625rem; /* Increased from 1rem (17px) */
        margin-right: 2px;
    }
    
    .marshall-review-name {
        font-size: 1rem; /* Increased from 0.9375rem (16px) */
        margin-bottom: 12px; /* Increased from 10px */
    }
    
    .marshall-review-text {
        font-size: 0.9375rem; /* Increased from 0.875rem (15px) */
    }
    
    .marshall-review-stars {
        margin-bottom: 18px; /* Increased */
    }
}