* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0, 0, 0, 0.212)), url('../img/career-banner.jpeg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Join Team Section */
.join-team {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f7941d;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Join Us */
.why-join {
    padding: 40px 0;
    background-color: #fff;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.benefit-card {
    width: calc(33.33% - 20px);
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 40px;
    color: #f7941d;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Current Openings */
.current-openings {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.job-listings {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.job-card {
    width: calc(50% - 15px);
    background-color: #fff;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.job-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.job-details {
    margin-bottom: 20px;
    color: #666;
}

.job-location {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.job-type {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.job-location i, .job-type i {
    margin-right: 10px;
    color: #f7941d;
}

.job-description {
    margin-bottom: 20px;
    color: #666;
}

.btn {
    display: inline-block;
    background-color: #f7941d;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #e47d0e;
}

/* Application Process */
.application-process {
    padding: 60px 0;
    background-color: #fff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.process-step {
    width: calc(25% - 20px);
    text-align: center;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15%;
    width: 30%;
    height: 2px;
    background-color: #ddd;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #f7941d;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-description {
    color: #666;
}

/* Join Now Form */
.join-now {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f7941d;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.join-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #f7941d;
}

.form-control.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-row {
    display: flex;
    margin: 0 -10px;
}

.form-col {
    padding: 0 10px;
    flex: 1;
}

.location-preference-container {
    width: 100%;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    padding: 5px 0;
}

.btn-submit {
    background-color: #f7941d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #e47d0e;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Error Popup Styles */
.error-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    border-left: 4px solid #dc3545;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    min-width: 300px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.error-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.error-popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.error-popup-icon {
    color: #dc3545;
    font-size: 18px;
    margin-right: 10px;
}

.error-popup-title {
    font-weight: 600;
    color: #dc3545;
}

.error-popup-message {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.error-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

/* Success Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(-20px);
    transition: transform 0.3s;
    position: relative;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-icon {
    width: 70px;
    height: 70px;
    background-color: #e6f7e6;
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.popup-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.popup-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.popup-details {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: left;
}

.popup-details h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #f7941d;
    font-size: 18px;
}

.popup-details ul {
    margin: 0;
    padding-left: 20px;
}

.popup-details li {
    margin-bottom: 5px;
}

.popup-close {
    background-color: #f7941d;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-close:hover {
    background-color: #e47d0e;
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(67, 97, 238, 0.02) 100%);
    bottom: -150px;
    right: -100px;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(230, 126, 34, 0.02) 100%);
    top: -50px;
    left: -50px;
    z-index: 0;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials .section-title .subtitle {
    display: inline-block;
    background-color: rgba(230, 126, 34, 0.1);
    color: #e67e22;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials .section-title h2 {
    font-size: 42px;
    color: #2d3748;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.testimonials .section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: #e67e22;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.testimonials .section-title p {
    color: #718096;
    font-size: 18px;
    max-width: 600px;
    margin: 25px auto 0;
}

/* Grid Layout instead of Marquee */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: calc(var(--card-index) * 0.1s);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.quotation-mark {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    line-height: 1;
    color: rgba(230, 126, 34, 0.1);
    font-family: 'Georgia', serif;
}

.rating {
    display: flex;
    margin-bottom: 10px;
}

.star {
    color: #f39c12;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #718096;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: #f0f0f0;
    border: 3px solid rgba(230, 126, 34, 0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: #e67e22;
}

/* Animation for initial fade in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ENHANCED RESPONSIVE DESIGN */

/* Extra Large Devices */
@media (max-width: 1400px) {
    .container {
        padding: 0 20px;
    }
}

/* Large Devices */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .testimonials .section-title h2 {
        font-size: 38px;
    }
}

/* Medium Devices */
@media (max-width: 992px) {
    .hero {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .join-team,
    .current-openings,
    .application-process,
    .join-now {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .benefits {
        justify-content: center;
    }
    
    .benefit-card {
        width: calc(50% - 20px);
        min-width: 280px;
    }
    
    .job-card {
        width: calc(50% - 15px);
        min-width: 300px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-step {
        width: calc(50% - 20px);
        min-width: 200px;
        margin-bottom: 30px;
    }
    
    .process-step:nth-child(odd):after {
        display: none;
    }
    
    .process-step:nth-child(2):after {
        content: '';
        position: absolute;
        top: 25px;
        right: -15%;
        width: 30%;
        height: 2px;
        background-color: #ddd;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials .section-title h2 {
        font-size: 36px;
    }
    
    .testimonials .section-title p {
        font-size: 16px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

/* Small Devices */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 200px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .join-team,
    .current-openings,
    .application-process,
    .join-now {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
        padding: 25px;
    }
    
    .benefit-icon {
        font-size: 35px;
    }
    
    .benefit-title {
        font-size: 18px;
    }
    
    .job-listings {
        flex-direction: column;
    }
    
    .job-card {
        width: 100%;
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .join-form {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-col {
        padding: 0;
        margin-bottom: 15px;
    }
    
    .error-popup {
        right: 10px;
        left: 10px;
        min-width: auto;
        top: 10px;
    }
    
    .popup-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-message {
        font-size: 14px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonials .section-title {
        margin-bottom: 40px;
    }
    
    .testimonials .section-title h2 {
        font-size: 30px;
    }
    
    .quotation-mark {
        font-size: 50px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        height: 180px;
    }
    
    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .join-team,
    .current-openings,
    .application-process,
    .join-now {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-title p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .benefit-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .benefit-icon {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .benefit-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .job-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .job-title {
        font-size: 16px;
    }
    
    .job-description {
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .step-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .join-form {
        padding: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-label {
        font-size: 14px;
        padding-left: 10px; 
    }
    
    .btn-submit {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .error-popup {
        padding: 12px 15px;
        right: 5px;
        left: 5px;
    }
    
    .popup-content {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .popup-title {
        font-size: 18px;
    }
    
    .popup-message {
        font-size: 13px;
    }
    
    .popup-details {
        padding: 12px;
    }
    
    .popup-details h4 {
        font-size: 16px;
    }
    
    .popup-close {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .section-title h2 {
        font-size: 26px;
    }
    
    .testimonials .section-title p {
        font-size: 14px;
    }
    
    .testimonials .section-title .subtitle {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-role {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .rating {
        margin-bottom: 8px;
    }
    
    .star {
        font-size: 16px;
    }
    
    .quotation-mark {
        font-size: 40px;
        top: 15px;
        right: 15px;
    }
}

/* Very Small Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .benefit-card,
    .job-card {
        padding: 15px;
    }
    
    .join-form {
        padding: 15px ;
    }
    
    .popup-content {
        padding: 15px 10px;
    }
    
    .testimonials .section-title h2 {
        font-size: 22px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .author-role {
        font-size: 12px;
    }
}

/* Ultra Small Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
    
    .hero {
        height: 150px;
    }
    
    .hero-content h1 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .hero-content p {
        font-size: 12px;
        padding: 0 5px;
    }
    
    .join-team,
    .current-openings,
    .application-process,
    .join-now {
        padding: 25px 0;
    }
    
    .section-title h2 {
        font-size: 18px;
    }
    
    .section-title p {
        font-size: 12px;
        padding: 0 5px;
    }
    
    .benefit-card,
    .job-card {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .benefit-icon {
        font-size: 25px;
        margin-bottom: 12px;
    }
    
    .benefit-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .job-title {
        font-size: 14px;
    }
    
    .job-description {
        font-size: 12px;
    }
    
    .btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .step-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .step-description {
        font-size: 12px;
    }
    
    .join-form {
        padding: 15px;
    }
    
    .form-control {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .form-label {
        font-size: 13px;
        padding-left: 10px; 
    }
    
    .btn-submit {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .error-popup {
        padding: 10px 12px;
        right: 3px;
        left: 3px;
        top: 5px;
    }
    
    .error-popup-title {
        font-size: 14px;
    }
    
    .error-popup-message {
        font-size: 12px;
    }
    
    .popup-content {
        padding: 12px 8px;
        margin: 0 3px;
    }
    
    .popup-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
        margin-bottom: 12px;
    }
    
    .popup-title {
        font-size: 16px;
    }
    
    .popup-message {
        font-size: 12px;
    }
    
    .popup-details {
        padding: 10px;
    }
    
    .popup-details h4 {
        font-size: 14px;
    }
    
    .popup-details li {
        font-size: 12px;
    }
    
    .popup-close {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials .section-title h2 {
        font-size: 20px;
    }
    
    .testimonials .section-title p {
        font-size: 12px;
    }
    
    .testimonials .section-title .subtitle {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .testimonial-card {
        padding: 12px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-role {
        font-size: 11px;
    }
    
    .testimonial-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .rating {
        margin-bottom: 6px;
    }
    
    .star {
        font-size: 14px;
    }
    
    .quotation-mark {
        font-size: 35px;
        top: 10px;
        right: 10px;
    }
}