* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: white;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

/* ============================================================================
   ANIMATIONS & TRANSITIONS
   ============================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* ============================================================================
   LANDING PAGE — HERO & ANIMATIONS
   ============================================================================ */

.unified-row-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    max-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    min-height: 60vh;
}

.background-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
    pointer-events: none;
    font-size: clamp(6rem, 18vw, 15rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    z-index: 0;
    white-space: nowrap;
    opacity: 1;
    animation: fadeIn 1.5s ease-out;
}

.background-text .gotutify-brand h1 {
    font-size: clamp(6rem, 18vw, 15rem);
    display: inline-block;
    transform: scaleX(0.9);
    margin-top: -1rem;
}

.unified-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 2rem);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(2rem, 8vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    border-radius: 24px;
    background: transparent;
    flex-wrap: nowrap;
    overflow: hidden;
}

.student-svg,
.teacher-svg {
    flex: 0 0 clamp(220px, 32vw, 720px);
    max-width: clamp(220px, 32vw, 720px);
    min-width: clamp(180px, 24vw, 240px);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
    animation: scaleIn 1s ease-out;
}

.svg-wrapper {
    width: 100%;
    max-width: 100%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.svg-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    /* This prevents the right-click menu from appearing on the image */
}

.student-svg .svg-wrapper {
    width: 90%;
    max-width: 500px;
}

.gotutify-brand h1 {
    font-size: clamp(2.6rem, 9vw, 5.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: -0.4rem 0 0;
    line-height: 1;
    white-space: nowrap;
    animation: slideInLeft 0.8s ease-out;
}

.gotutify-brand h1 .go {
    color: #1c1e21e6;
    font-size: 1em;
}

.gotutify-brand h1 .tutify {
    background: linear-gradient(135deg, #4c64e6 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1em;
}

/* ============================================================================
   HEADER/NAVIGATION
   ============================================================================ */

.about-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
    animation: fadeIn 0.6s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-nav a {
    text-decoration: none;
    color: #4c64e6;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.about-nav a:hover {
    color: #667eea;
    background: rgba(76, 100, 230, 0.1);
    transform: translateY(-2px);
}

.about-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.about-logo .go {
    color: #1c1e21;
}

.about-logo .tutify {
    background: linear-gradient(135deg, #4c64e6 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================================
   PAGE HEADERS
   ============================================================================ */

.about-header,
.contact-header {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4rem;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.about-header h1,
.contact-header h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    color: #1c1e21;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: slideInLeft 0.8s ease-out;
}

.about-header p,
.contact-header p {
    font-size: 1.15rem;
    color: #65676b;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ============================================================================
   MAIN CONTAINERS
   ============================================================================ */

.about-container,
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.about-section,
.contact-section {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.about-section:nth-child(1) {
    animation-delay: 0.1s;
}

.about-section:nth-child(2) {
    animation-delay: 0.2s;
}

.about-section:nth-child(3) {
    animation-delay: 0.3s;
}

.about-section h2,
.contact-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #1c1e21;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.about-section h2::after,
.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4c64e6, #667eea);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.about-section:hover h2::after,
.contact-section:hover h2::after {
    width: 120px;
}

.about-section:first-of-type h2,
.contact-section:first-of-type h2 {
    margin-top: 0;
}

.about-section p,
.contact-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.about-section p:hover {
    color: #1c1e21;
}

/* ============================================================================
   LISTS — REMOVE CHECKMARKS, USE MODERN DESIGN
   ============================================================================ */

.about-section ul,
.about-section ol {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-section ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.about-section ul li:hover {
    color: #1c1e21;
    padding-left: 2rem;
}

.about-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4c64e6, #667eea);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-section ul li:hover::before {
    width: 12px;
    height: 12px;
    left: -2px;
    box-shadow: 0 0 0 3px rgba(76, 100, 230, 0.1);
}

/* ============================================================================
   CALL TO ACTION SECTIONS
   ============================================================================ */

.call-to-action {
    background: linear-gradient(135deg, #4c64e6 0%, #667eea 50%, #5e5ce6 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
    animation: scaleIn 0.8s ease-out;
    box-shadow: 0 20px 50px rgba(76, 100, 230, 0.3);
    transition: all 0.3s ease;
}

.call-to-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(76, 100, 230, 0.4);
}

.call-to-action h2 {
    color: white;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.call-to-action h2::after {
    display: none;
}

.call-to-action p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.call-to-action a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.call-to-action a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-2px);
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out;
    cursor: pointer;
}

.contact-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(76, 100, 230, 0.15);
    border-color: #4c64e6;
}

.contact-option h3 {
    font-size: 1.3rem;
    color: #1c1e21;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-option p {
    margin-bottom: 0.6rem;
    color: #65676b;
    font-size: 1rem;
}

.contact-option strong {
    color: #4c64e6;
    font-weight: 700;
}

.contact-form-container {
    margin-top: 3rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out;
}

.form-group {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #1c1e21;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4c64e6;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 100, 230, 0.1);
    transform: scale(1.01);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    background: linear-gradient(135deg, #4c64e6 0%, #667eea 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(76, 100, 230, 0.3);
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 100, 230, 0.4);
}

.form-submit:active {
    transform: translateY(-1px);
}

/* ============================================================================
   TABLES
   ============================================================================ */

.reply-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out;
}

.reply-policy-table th,
.reply-policy-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.reply-policy-table th {
    background: linear-gradient(135deg, #4c64e6 0%, #667eea 100%);
    color: white;
    font-weight: 700;
}

.reply-policy-table tr:hover {
    background: #f8f9ff;
}

.reply-policy-table td {
    color: #555;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
    background: linear-gradient(135deg, #1c1e21 0%, #2d2e33 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
    width: 100%;
    overflow-x: hidden;
    animation: fadeIn 1s ease-out;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b0b3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================================================
   FEATURE CARDS & GRIDS
   ============================================================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(76, 100, 230, 0.15);
    border-color: #4c64e6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4c64e6 0%, #667eea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(76, 100, 230, 0.25);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(76, 100, 230, 0.35);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1c1e21;
}

.feature-desc {
    color: #65676b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

section {
    padding: 4rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1c1e21;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4c64e6, #667eea);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ============================================================================
   ENGAGEMENT & HOOK SECTIONS
   ============================================================================ */

.engagement-box {
    background: linear-gradient(135deg, rgba(76, 100, 230, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-left: 4px solid #4c64e6;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    animation: slideInLeft 0.6s ease-out;
    transition: all 0.3s ease;
}

.engagement-box:hover {
    border-left-width: 6px;
    padding-left: 1.8rem;
    box-shadow: 0 8px 20px rgba(76, 100, 230, 0.1);
}

.engagement-box h3 {
    color: #4c64e6;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.engagement-box p {
    color: #555;
    line-height: 1.8;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1023px) {

    .about-container,
    .contact-container {
        padding: 0 1.5rem 3rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .about-nav {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .about-logo {
        font-size: 1.2rem;
    }

    .about-header,
    .contact-header {
        padding: 2.5rem 1rem;
        margin-bottom: 2rem;
    }

    .about-header h1,
    .contact-header h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .about-container,
    .contact-container {
        padding: 0 1rem 2rem;
        max-width: 100%;
    }

    .about-section h2,
    .contact-section h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-section p,
    .contact-section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .about-section ul li {
        font-size: 1rem;
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .contact-option {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-option h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .contact-option p {
        font-size: 0.95rem;
    }

    .contact-form-container {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-submit {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .reply-policy-table th,
    .reply-policy-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }

    .call-to-action {
        padding: 2.5rem 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .call-to-action h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }

    .call-to-action p {
        font-size: 1.05rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    footer {
        padding: 2.5rem 1rem 1.5rem;
        margin-top: 3rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    /* Hero Section Normalization for Mobile/Tablet */
    .unified-row-wrapper {
        min-height: 50vh;
    }

    .unified-row {
        padding: 1rem 0.5rem;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        min-height: 50vh;
    }

    .student-svg,
    .teacher-svg {
        flex: 0 0 38%;
        max-width: 38%;
        min-width: 100px;
        z-index: 2;
    }

    .background-text {
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }

    .background-text .gotutify-brand h1 {
        font-size: clamp(3.5rem, 18vw, 7rem);
        margin-top: -5rem;
        /* Shifted up more as requested */
        opacity: 0.9;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .gotutify-brand h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .about-nav {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .about-logo {
        font-size: 1rem;
    }

    .about-header,
    .contact-header {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1.5rem;
    }

    .about-header h1,
    .contact-header h1 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 0.5rem;
    }

    .about-container,
    .contact-container {
        padding: 0 0.75rem 1.5rem;
    }

    .about-section,
    .contact-section {
        margin-bottom: 2rem;
    }

    .about-section h2,
    .contact-section h2 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }

    .about-section p,
    .contact-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    .about-section ul li {
        font-size: 0.95rem;
        padding-left: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .contact-option {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem 0.75rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-submit {
        max-width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .call-to-action {
        padding: 2rem 0.75rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .call-to-action h2 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 0.8rem;
    }

    .call-to-action p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .engagement-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .engagement-box h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    footer {
        padding: 1.5rem 0.75rem 1rem;
        margin-top: 2rem;
    }

    .footer-section h3 {
        font-size: 0.95rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}