:root {
    --primary: #e5322d;
    --primary-dark: #c9241f;
    --secondary: #2d3748;
    --light: #f7fafc;
    --gray: #718096;
    --border: #e2e8f0;
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    background-color: var(--light);
    color: var(--secondary);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    /* Spacing between items */
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e5322d;
    /* Red */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Nav Link Styles */
.nav-item {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
}

.nav-item:hover {
    color: var(--primary);
}

/* Sign Up Button Style */
.btn-signup-nav {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
    display: inline-block;
}

.btn-signup-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
        /* Strictly hidden by default */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        /* Visible only when active */
    }

    .nav-item,
    .user-profile,
    .btn-login {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        margin: 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.1rem;
    }

    .nav-links>a:last-of-type,
    .nav-links>button:last-of-type {
        border-bottom: none;
    }

    .btn-signup-nav {
        margin: 15px auto;
        width: 80%;
        display: block;
        text-align: center;
    }
}

/* Hero */
.hero {
    background: #4a5568;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
}

.tool-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--secondary);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--border);
}

.tool-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.tool-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
}

.tool-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray);
}

/* Tool Workspace */
.tool-header {
    text-align: center;
    padding: 60px 0 40px;
}

.upload-box {
    background: white;
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    /* Increased for wider workspace */
    margin: 0 auto;
    min-height: 300px;
}

/* Dropzone Styles */
.dropzone {
    border: 3px dashed var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: all 0.3s ease;
    background: #fdfdfd;
    cursor: pointer;
}

.dropzone.highlight {
    border-color: var(--primary);
    background: #fff5f5;
}

.dropzone-content h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: var(--secondary);
}

.upload-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.file-input {
    display: none;
}

.btn-select {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.2s;
}

.btn-select:hover {
    background: var(--primary-dark);
}

/* File Preview List */
.preview-area {
    text-align: left;
}

.file-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
    padding: 5px;
}

.file-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.file-icon {
    font-size: 2.5rem;
    color: var(--primary);
    /* PDF Red */
    margin-bottom: 10px;
}

.file-info {
    width: 100%;
}

.file-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.file-size {
    font-size: 0.8rem;
    color: var(--gray);
}

.file-status {
    margin-top: 5px;
    color: #48bb78;
    /* Green */
    font-size: 0.85rem;
    font-weight: 600;
}

.file-pages {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--secondary);
    background: #edf2f7;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Action Area */
.action-area {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    text-align: center;
}

.tool-options {
    margin-bottom: 20px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.option-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
}

.action-btn-large {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.1s, background 0.2s;
    box-shadow: 0 4px 6px rgba(229, 50, 45, 0.3);
}

.action-btn-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-reset {
    display: block;
    background: none;
    border: none;
    color: var(--gray);
    margin: 20px auto 0;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.btn-reset:hover {
    color: var(--secondary);
}

/* Footer */
footer {
    background: white;
    margin-top: 80px;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col h3 {
    margin: 0 0 15px 0;
    color: var(--primary);
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: var(--gray);
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {

    .btn-login,
    .btn-primary {
        margin: 5px 0 !important;
        text-align: center;
        box-sizing: border-box;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .upload-box {
        padding: 20px;
    }

    .file-list {
        grid-template-columns: 1fr;
    }

    .file-card {
        flex-direction: row;
        text-align: left;
    }

    .file-icon {
        margin-bottom: 0;
        margin-right: 15px;
    }

    .file-status {
        margin-top: 0;
        margin-left: auto;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
    }

    .price-tag .amount {
        font-size: 2.5rem;
    }
}

/* ===========================
   About Page Styles
   =========================== */

/* Hero */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a202c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Stats Bar */
.about-stats-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-item i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Page Content */
.about-page-content {
    padding: 50px 20px;
    max-width: 960px;
}

/* About Cards */
.about-card {
    background: white;
    border-radius: 12px;
    padding: 45px 40px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
}

.about-card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.about-card>p {
    color: var(--gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Tools Features Grid */
.tools-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.tool-feature-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: all 0.2s;
}

.tool-feature-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.tool-feature-item i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background: var(--light);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid var(--border);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Developer Section */
.developer-section {
    text-align: left;
}

.developer-profile {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
}

.dev-photo-wrap {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 20px rgba(229, 50, 45, 0.2);
    margin: 0 auto;
}

.dev-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dev-info {
    flex: 1;
    min-width: 260px;
}

.dev-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.dev-title,
.dev-org {
    display: block;
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 6px;
}

.dev-title i,
.dev-org i {
    color: var(--primary);
    margin-right: 6px;
}

.dev-bio {
    color: var(--gray);
    line-height: 1.8;
    margin: 15px 0;
    font-size: 0.97rem;
}

/* Skill Badges */
.dev-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-badge {
    background: #fff5f5;
    color: var(--primary);
    border: 1px solid #fed7d7;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Contact Links */
.dev-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dev-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 7px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.2s;
}

.dev-contact-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Made in India */
.made-in-india {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-color: #fed7d7;
}

.made-in-india .about-card-icon {
    font-size: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 30px;
    }

    .about-card {
        padding: 30px 20px;
    }

    .developer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dev-info {
        text-align: center;
    }

    .dev-skills,
    .dev-contact {
        justify-content: center;
    }

    .tools-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Stats */
.visitor-stats {
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 0.85rem;
    opacity: 0.8;
}

.visitor-stats i {
    margin-right: 5px;
    color: var(--secondary);
}

/* Auth Styles */
.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
    border: 2px solid var(--primary-light);
}

.user-profile {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
    margin-right: 15px;
    text-decoration: none;
}

.pro-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    text-transform: uppercase;
}

/* Promo Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.close-btn:hover {
    color: #333;
}

.modal-header {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    padding: 30px 20px;
    color: white;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-body {
    padding: 30px 25px;
}

.offer-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2980;
    margin-bottom: 25px;
}

.price-tag .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
    align-self: flex-start;
    margin-top: 5px;
}

.price-tag .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-tag .period {
    font-size: 1rem;
    color: #888;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 5px;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.feature-list li {
    margin-bottom: 12px;
    color: #444;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.1rem;
}

.modal-footer {
    padding: 0 25px 30px;
}

.modal-footer .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(26, 41, 128, 0.3);
}

/* Auth Page Utilities */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.border-0 {
    border: 0 !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.text-center {
    text-align: center !important;
}

.text-success {
    color: #28a745 !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-dark {
    color: #343a40 !important;
}

.text-muted {
    color: #6c757d !important;
}

.small {
    font-size: 80%;
    font-weight: 400;
}

.form-label {
    margin-bottom: 0.5rem;
    display: inline-block;
}

.text-secondary {
    color: #6c757d !important;
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.text-danger {
    color: #dc3545 !important;
}

.d-grid {
    display: grid !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.text-decoration-none {
    text-decoration: none !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.justify-content-center {
    justify-content: center !important;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.text-primary {
    color: #007bff !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

/* Alert link button reset */
.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    border: none;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.align-baseline {
    vertical-align: baseline !important;
}

.d-inline {
    display: inline !important;
}

/* Auth Page Responsive Design */
.auth-container {
    max-width: 420px;
    margin: 60px auto;
    padding: 0 20px;
}

.auth-container.register {
    max-width: 480px;
}

.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-body {
    padding: 3rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-check-input {
    margin-top: 0.3rem;
    margin-right: 0.5rem;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.gap-2 {
    gap: 0.5rem;
}

.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    .auth-container,
    .auth-container.register {
        margin: 20px auto;
        padding: 0 15px;
        max-width: 100%;
    }

    .card-body {
        padding: 2rem 1.5rem !important;
    }

    .form-control-lg {
        font-size: 1rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    .btn-lg {
        font-size: 1.1rem !important;
        padding: 0.5rem 1rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .btn-outline-secondary {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    /* Adjust Google button image */
    .btn-outline-secondary img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .card-body {
        padding: 1.5rem 1rem !important;
    }

    h2 {
        font-size: 1.3rem !important;
    }

    .form-control-lg {
        font-size: 0.95rem !important;
    }

    .btn-lg {
        font-size: 1rem !important;
    }
}