/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
}

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

/* Header and Navigation */
.navbar {
    background: #1a365d;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #63b3ed;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a365d 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    font-weight: 300;
}

/* Bentz Image Styling */
.bentz-image-container {
    flex: 0 0 300px;
    text-align: center;
}

.bentz-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 100% center;
    border: 4px solid #e53e3e;
    box-shadow: 0 8px 32px rgba(229, 62, 62, 0.3);
    filter: grayscale(20%) contrast(0.9);
    transition: all 0.3s ease;
}

.bentz-image:hover {
    filter: grayscale(40%) contrast(0.8);
    transform: scale(1.05);
}

.image-caption {
    margin-top: 1rem;
}

.caption-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.caption-subtitle {
    display: block;
    font-size: 1rem;
    color: #e53e3e;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    padding: 0 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #63b3ed;
}

.stat-label {
    font-size: 1rem;
    color: #e2e8f0;
}

.cta-container {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    margin: 0 auto;
    text-align: center;
}

.cta-button:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

/* Issues Section */
.issues-section {
    padding: 80px 0;
    background: #f7fafc;
}

.issues-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #2d3748;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.issue-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #e53e3e;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.issue-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.issue-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.issue-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.issue-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.issue-card li::before {
    content: "•";
    color: #e53e3e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.impact {
    background: #fed7d7;
    border: 1px solid #feb2b2;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.impact-label {
    font-weight: 700;
    color: #c53030;
}

.sources {
    background: #f0f8ff;
    border: 1px solid #bee3f8;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.sources strong {
    color: #2b6cb0;
    display: block;
    margin-bottom: 0.5rem;
}

.sources a {
    color: #2b6cb0;
    text-decoration: underline;
    font-weight: 500;
}

.sources a:hover {
    color: #1a365d;
    text-decoration: none;
}

/* Contradictions Section */
.contradictions {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

.contradictions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #c53030;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contradiction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contradiction-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #e53e3e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contradiction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.contradiction-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contradiction-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c53030;
    margin: 0;
    flex: 1;
}

.date {
    background: #e53e3e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.quote {
    background: #f7fafc;
    border-left: 3px solid #e2e8f0;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.quote p {
    font-style: italic;
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.analysis {
    color: #2d3748;
    line-height: 1.6;
}

.analysis strong {
    color: #c53030;
}

/* Voting Record Section */
.voting-record {
    padding: 80px 0;
    background: white;
}

.voting-record h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d3748;
}

.record-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.record-item {
    background: #fff5f5;
    border: 2px solid #feb2b2;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.record-item.positive {
    background: #f0fff4;
    border: 2px solid #9ae6b4;
}

.record-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.vote-result {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.record-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.record-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: #edf2f7;
}

.solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d3748;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #38a169;
    transition: all 0.3s ease;
}

.solution:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.solution h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.solution p {
    color: #4a5568;
    line-height: 1.7;
}

/* Action Section */
.action-section {
    padding: 80px 0;
    background: white;
}

.action-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.action-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.action-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3182ce;
}

.action-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.action-card ul {
    list-style: none;
}

.action-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.6;
}

.action-card li::before {
    content: "→";
    color: #3182ce;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.primary-info {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.primary-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.primary-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.register-button {
    display: inline-block;
    background: #38a169;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-button:hover {
    background: #2f855a;
    transform: translateY(-2px);
}

/* Sources Section */
.sources-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sources-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.source-document {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
}

.source-document h3 {
    color: #2b6cb0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.document-highlights {
    margin: 2rem 0;
}

.document-highlights h4 {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.excerpt {
    background: #f7fafc;
    border-left: 4px solid #2b6cb0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.excerpt strong {
    color: #2b6cb0;
    display: block;
    margin-bottom: 0.5rem;
}

.excerpt p {
    font-style: italic;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.document-link {
    text-align: center;
    margin-top: 2rem;
}

.document-link a {
    background: #2b6cb0;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.document-link a:hover {
    background: #1a365d;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section p {
    line-height: 1.6;
    color: #a0aec0;
}

.footer-section p a {
    color: #63b3ed;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #90cdf4;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #63b3ed;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    body {
        overflow-x: hidden;
        width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Force contact section to full width on mobile */
    .contact-section {
        width: 100% !important;
        padding: 60px 0 !important;
    }
    
    .contact-section .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a365d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
    }
    
    .bentz-image-container {
        flex: none;
        order: -1;
        width: 100%;
    }
    
    .bentz-image {
        width: 150px;
        height: 150px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1.5rem;
    }
    
    .issue-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .contradiction-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .contradiction-card {
        width: 100%;
        max-width: 100%;
    }
    
    .contradiction-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .date {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: flex-start;
    }
    
    .source-document {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .excerpt {
        padding: 1rem;
        width: 100%;
    }

    .record-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1rem;
    }
    
    .record-item {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1.5rem;
    }
    
    .solution {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 1.5rem;
    }
    
    .action-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
    }
    
    .footer-section {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .contact-info,
    .contact-form-container {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .contact-form-container {
        padding: 1.5rem !important;
        margin-top: 1rem;
    }
    
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .form-group {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-width: 0;
    }
    
    .submit-button {
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .checkbox-label {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        gap: 1rem !important;
        align-items: flex-start !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }
    
    .checkbox-group {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .form-success-message {
        padding: 2rem 1rem;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
    
    .success-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100vw;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Extra small mobile contact fixes */
    .contact-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 1rem !important;
    }
    
    .contact-info,
    .contact-form-container {
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .contact-form-container {
        padding: 1rem !important;
    }
    
    /* Even smaller mobile checkbox fixes */
    .checkbox-label {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        gap: 0.75rem !important;
        padding-right: 10px !important;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        margin-top: 1px !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .issue-card,
    .contradiction-card,
    .solution,
    .action-card {
        padding: 1.5rem;
    }
    
    .contradiction-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quote {
        padding: 1rem;
    }
    
    .source-document {
        padding: 1rem;
    }
    
    .sources-section h2 {
        font-size: 2rem;
    }
    
    .primary-info {
        padding: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.issue-card,
.solution,
.action-card,
.record-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #63b3ed;
    outline-offset: 2px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
}

.help-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.help-option {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.help-option strong {
    display: block;
    color: #e53e3e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.help-option p {
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #2d3748;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #e53e3e;
}

.submit-button {
    background: #e53e3e;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background: #c53030;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.form-note {
    font-size: 0.85rem;
    color: #2d3748;
    line-height: 1.5;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Form Success Message */
.form-success-message {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
    animation: slideInUp 0.5s ease-out;
}

.success-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.success-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.success-content .cta-button {
    background: white;
    color: #38a169;
    border: 2px solid white;
    margin: 0;
}

.success-content .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2f855a;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        padding: 2rem 0;
        background: #2d3748 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}