/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Colors */
:root {
    /* Primary Colors - Based on Logo */
    --primary-blue: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --accent-red: #dc2626; /* Replaced green with red */
    --accent-red-dark: #b91c1c; /* Darker red for hover */
    --accent-red-light: #ef4444; /* Lighter red */
    --highlight-yellow: #fbbf24; /* Yellow from logo */
    --highlight-yellow-dark: #f59e0b;

    /* Text Colors */
    --text-dark: #111827;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --text-on-blue: #ffffff;
    --text-on-red: #ffffff;
    --text-on-dark: #f9fafb;

    /* Background Colors */
    --neutral-bg: #f9fafb;
    --light-blue-bg: #eff6ff;
    --light-red-bg: #fef2f2; /* Light red background */
    --light-yellow-bg: #fef3c7; /* Light yellow background */
    --white: #ffffff;

    /* Gray Scale */
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;

    /* Semantic Colors */
    --success: #dc2626; /* Changed to red */
    --warning: #fbbf24; /* Changed to yellow */
    --error: #ef4444;
    --info: #3b82f6;

    /* Legacy color mappings for compatibility */
    --accent-green: var(--accent-red);
    --accent-green-dark: var(--accent-red-dark);
    --light-green-bg: var(--light-red-bg);
    --highlight-amber: var(--highlight-yellow);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Typography */
body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue-light);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Enhanced Design */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.nav-links a:hover {
    color: var(--text-dark);
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.nav-links a.active {
    color: var(--text-dark);
    background-color: var(--highlight-yellow);
}

.nav-links a.active:hover {
    background-color: var(--highlight-yellow-dark);
}

/* Mobile menu button (for future mobile implementation) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #004AAD 0%, #003d8f 40%, #00BFA6 100%);
    color: var(--white);
    padding: 4rem 0;
    min-height: 500px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 51px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 51px
    );
    opacity: 0.6;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    font-weight: 600;
    color: #93bbfc;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary {
    background-color: var(--accent-red);
    color: var(--white);
}

.cta-primary:hover {
    background-color: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.cta-secondary:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

a.cta-button.cta-button--prominent,
.cta-button.cta-button--prominent {
    display: block !important;
    width: fit-content !important;
    text-align: center !important;
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    margin: 1rem auto !important;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3) !important;
    border-radius: 8px !important;
    justify-self: center;
    align-self: start;
    text-decoration: none !important;
}

a.cta-button.cta-button--prominent:hover,
.cta-button.cta-button--prominent:hover {
    background-color: var(--primary-blue-light) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4) !important;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

/* Who It's For Section */
.who-section {
    background-color: var(--neutral-bg);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.who-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.who-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.who-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.who-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Preview Section */
.preview-section {
    background-color: var(--white);
}

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

.preview-card {
    text-align: center;
}

.preview-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.preview-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.preview-caption {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Platforms Section */
.platforms-section {
    background-color: var(--white);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto auto;
    gap: 0 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    color: var(--primary-blue);
    text-align: center;
}

.platform-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.platform-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

a.platform-title-link {
    text-decoration: none;
}

a.platform-title-link:hover .platform-title {
    color: var(--primary-blue);
}

a.platform-icon {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

a.platform-icon:hover {
    opacity: 0.8;
}

.platform-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-medium);
}

.platform-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 1.75rem;
}

.platform-features li:last-child {
    border-bottom: none;
}

.platform-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Signup Section */
.signup-section {
    background-color: var(--neutral-bg);
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.signup-form .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-50);
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

.faq-item h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.faq-item ul {
    color: var(--text-body);
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.faq-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-item a {
    color: var(--primary);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Provider CTA Section */
.provider-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.provider-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/provider-cta-bg.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.provider-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 0;
}

.provider-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.provider-cta p {
    color: var(--text-on-blue);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-on-dark);
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.9;
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--text-on-dark);
    font-weight: 500;
    opacity: 0.9;
}

.footer-nav a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-on-dark);
    opacity: 0.8;
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.about-hero p {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 300;
    margin: 0 auto;
    max-width: 600px;
}

.about-hero p strong {
    font-weight: 600;
    color: #93bbfc;
}

.about-content {
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.about-section h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.developer-message {
    background-color: var(--light-yellow-bg);
    border: 2px solid var(--highlight-yellow);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.developer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.developer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.developer-message p {
    color: var(--text-dark);
    font-style: italic;
}

/* Page Hero Sections - Consistent Styling */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.page-hero p {
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 500;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    max-width: 700px;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p,
.legal-page li {
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

/* About Page Additional Styles */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.about-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section ul {
    color: var(--text-medium);
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-section li {
    margin-bottom: 0.75rem;
}

.about-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.founder-message {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.founder-message h2 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    padding: 1.25rem;
    background: var(--gray-100);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.value-item h3 {
    color: var(--success);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Privacy & Terms Page Styles */
.privacy-hero,
.terms-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
}

.privacy-hero::before,
.terms-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.privacy-hero .container,
.terms-hero .container {
    position: relative;
    z-index: 1;
}

.privacy-hero h1,
.terms-hero h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.privacy-hero p,
.terms-hero p {
    color: #ffffff;
    font-size: 1.375rem;
    font-weight: 500;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    max-width: 700px;
}

.privacy-content,
.terms-content {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2,
.terms-content h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.privacy-content h3,
.terms-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p,
.terms-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-content ul,
.terms-content ul,
.privacy-content ol,
.terms-content ol {
    color: var(--text-medium);
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 0.5rem;
}

.privacy-content strong,
.terms-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.privacy-content a,
.terms-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

.privacy-content a:hover,
.terms-content a:hover {
    text-decoration: underline;
}

.effective-date {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Color Guide Page Styles */
.color-guide {
    padding: 3rem 0;
}

.color-section {
    margin-bottom: 3rem;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.color-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-swatch {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.color-info {
    padding: 1rem;
}

.color-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.color-value {
    font-family: monospace;
    font-size: 14px;
    color: #6b7280;
}

.color-usage {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.contrast-demo {
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

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

.wcag-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 0.5rem;
}

.wcag-aaa {
    background: #10b981;
    color: white;
}

.wcag-aa {
    background: #f59e0b;
    color: white;
}

.wcag-fail {
    background: #ef4444;
    color: white;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.contact-hero p {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
    margin: 0 auto;
    max-width: 600px;
    opacity: 0.95;
}

.contact-content {
    padding: 4rem 0;
    background: var(--neutral-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-info-section h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    color: var(--primary-blue);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.office-hours {
    background: var(--neutral-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.office-hours h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.office-hours ul {
    list-style: none;
    padding: 0;
}

.office-hours li {
    color: var(--text-medium);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.office-hours li:last-child {
    border-bottom: none;
}

.office-hours strong {
    color: var(--text-dark);
    font-weight: 600;
    display: inline-block;
    width: 120px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }

    .hero-image-wrapper {
        margin-top: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

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

    .preview-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-column {
        margin-bottom: 1rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links li {
        width: 100%;
    }

    .footer-links a {
        display: flex;
        align-items: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 0;
    }

    .hero {
        padding: 2rem 0;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Social Link Icons in Footer */
.social-link.whatsapp svg {
    fill: #25D366;
}

.social-link.facebook svg {
    fill: #0084FF;
}

.social-link:hover svg {
    opacity: 0.8;
}

/* Floating Social Buttons */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
}

.social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.facebook {
    background: #0084FF;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    margin-top: 5vh;
    border-radius: 8px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.5)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 30px;
}

/* Form Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    flex: 1;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Status Messages */
.form-status {
    margin-top: 1.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-status.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

/* Honeypot (hidden spam prevention field) */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
