/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #032D60; /* Salesforce Blue */
    --secondary: #1589EE; /* Lighter Blue */
    --accent: #FF6B35; /* Salesforce Orange */
    --light: #F8F9FA;
    --dark: #2E2E2E;
    --gray: #6B7280;
    --light-gray: #E5E7EB;
    --success: #4CAF50;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #021D42;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 45, 96, 0.15);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #0E7BD6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 137, 238, 0.15);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-text {
    background-color: transparent;
    color: var(--primary);
    padding: 12px 0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    color: var(--secondary);
}

.btn-text i {
    font-size: 0.9rem;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.logo a {
    color: inherit;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FBFF 0%, #E8F2FC 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(21, 137, 238, 0.05) 0%, rgba(21, 137, 238, 0) 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* What You Can Do Section */
.what-you-can-do {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(2) {
    border-top-color: var(--secondary);
}

.feature-card:nth-child(3) {
    border-top-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-card:nth-child(2) .feature-icon {
    color: var(--secondary);
}

.feature-card:nth-child(3) .feature-icon {
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Upcoming Cohorts Section */
.upcoming-cohorts {
    background-color: var(--light);
}

.cohorts-container {
    margin-top: 2rem;
}

.cohorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cohort-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.cohort-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cohort-header {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
}

.cohort-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cohort-date {
    font-weight: 600;
    font-size: 1.1rem;
}

.cohort-body {
    padding: 1.8rem;
}

.cohort-details {
    margin-bottom: 1.5rem;
}

.cohort-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.cohort-detail:last-child {
    border-bottom: none;
}

.cohort-detail span:first-child {
    font-weight: 600;
    color: var(--dark);
}

.cohort-detail span:last-child {
    color: var(--gray);
}

.cohort-fee {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 1.5rem 0;
}

.view-all-cohorts {
    text-align: center;
}

/* Why Wizdin Section */
.why-wizdin {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 0.95rem;
}

/* Learning Meets Experience Section */
.learning-experience {
    background: linear-gradient(135deg, #032D60 0%, #1589EE 100%);
    color: white;
    padding: 5rem 0;
}

.learning-experience h2 {
    color: white;
}

.learning-experience p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.learning-experience .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.experience-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    margin: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--dark);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.testimonial-role {
    color: var(--gray);
    font-size: 0.9rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--light);
    padding: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1.5rem;
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Content Hub Styles */
.content-hub {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.content-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.content-card h3 {
    margin-bottom: 1rem;
}

.content-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.content-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

/* Program Cards */
.program-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.program-card-header {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
}

.program-card-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.program-duration {
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.9;
}

.program-card-body {
    padding: 2rem;
}

.program-fee {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 1.5rem 0;
}

.program-features {
    margin-bottom: 1.5rem;
}

.program-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-features i {
    color: var(--success);
}

.program-description {
    margin-bottom: 1.5rem;
}

/* Consulting Grid */
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.consulting-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.consulting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.consulting-card h3 {
    margin-bottom: 1rem;
}

.consulting-card p {
    margin-bottom: 1.5rem;
}

.consulting-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(3, 45, 96, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Video Playlist Styles */
.video-playlist-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.playlist-icon {
    font-size: 2rem;
    color: #FF0000; /* YouTube red */
}

.playlist-description {
    margin-bottom: 1.5rem;
}

.playlist-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin-bottom: 1.5rem;
}

.playlist-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.playlist-cta {
    text-align: center;
}

/* About Founder Styles */
.founder-section {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-top: 3rem;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.founder-info h3 {
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.cert-badge {
    background-color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.page-content {
    padding: 4rem 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styles */
.sidebar {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.sidebar h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.sidebar-links li {
    margin-bottom: 0.8rem;
}

.sidebar-links a {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.sidebar-links a:hover {
    color: var(--primary);
}

.sidebar-links i {
    font-size: 0.8rem;
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-links h4, .footer-social h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .features-grid, .cohorts-grid, .consulting-grid, .content-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 24px;
        width: 100%;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .feature-card, .cohort-card, .testimonial-card, .content-card, .consulting-card {
        padding: 1.8rem 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}


<style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }
    
    body {
        background-color: #f5f7fa;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 20px;
        color: #2e3a59;
    }
    
    .audit-form-container {
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 84, 166, 0.1);
        width: 100%;
        max-width: 680px;
        padding: 50px;
        border: 1px solid #e0e6f0;
    }
    
    .header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 25px;
        border-bottom: 2px solid #f0f5ff;
    }
    
    .header h1 {
        color: #032d60;
        font-size: 32px;
        margin-bottom: 15px;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .header p {
        color: #5a6c90;
        font-size: 17px;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .form-row {
        display: flex;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 25px;
        flex: 1;
    }
    
    .full-width {
        width: 100%;
        flex: none;
    }
    
    label {
        display: block;
        font-weight: 600;
        color: #2e3a59;
        margin-bottom: 10px;
        font-size: 15px;
    }
    
    label.required::after {
        content: " *";
        color: #ea001e;
        font-weight: bold;
    }
    
    .optional {
        color: #6b778c;
        font-weight: 500;
    }
    
    .optional::after {
        content: " (optional)";
        color: #8e9cb2;
        font-weight: normal;
    }
    
    input, select, textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #d8dde6;
        border-radius: 10px;
        font-size: 16px;
        transition: all 0.3s ease;
        background-color: #fdfdfd;
        color: #2e3a59;
    }
    
    input:focus, select:focus, textarea:focus {
        border-color: #0176d3;
        box-shadow: 0 0 0 3px rgba(1, 118, 211, 0.1);
        outline: none;
        background-color: white;
    }
    
    textarea {
        min-height: 120px;
        resize: vertical;
        line-height: 1.5;
    }
    
    select {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6c90' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 18px center;
        background-size: 18px;
        padding-right: 50px;
    }
    
    .checkbox-group {
        background-color: #f8fafd;
        border-radius: 10px;
        padding: 20px;
        border: 1px solid #e0e6f0;
    }
    
    .checkbox-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 10px;
    }
    
    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .checkbox-item label {
        margin: 0;
        font-weight: 500;
        color: #2e3a59;
        cursor: pointer;
    }
    
    .submit-section {
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 2px solid #f0f5ff;
    }
    
    .submit-btn {
        background: linear-gradient(135deg, #0176d3 0%, #032d60 100%);
        color: white;
        border: none;
        padding: 18px 40px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        min-width: 250px;
        letter-spacing: 0.5px;
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(1, 118, 211, 0.3);
        background: linear-gradient(135deg, #032d60 0%, #0176d3 100%);
    }
    
    .disclaimer {
        color: #6b778c;
        font-size: 14px;
        margin-top: 20px;
        line-height: 1.5;
        font-style: italic;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    @media (max-width: 768px) {
        .audit-form-container {
            padding: 30px 25px;
        }
        
        .form-row {
            flex-direction: column;
            gap: 0;
        }
        
        .checkbox-grid {
            grid-template-columns: 1fr;
        }
        
        .header h1 {
            font-size: 26px;
        }
        
        .header p {
            font-size: 16px;
        }
        
        .submit-btn {
            min-width: 100%;
            padding: 16px;
        }
    }
</style>