/* CSS Variables - Brand Colors from Identity Guide */
:root {
    /* Primary Colors */
    --gather-blue: #2C5282;
    --warm-terracotta: #D4621A;
    
    /* Secondary Colors */
    --sage-green: #68A085;
    --warm-cream: #F7F5F2;
    
    /* Accent Colors */
    --golden-highlight: #F6AD55;
    --charcoal-gray: #2D3748;
    
    /* Additional Utility Colors */
    --white: #FFFFFF;
    --light-gray: #F7FAFC;
    --medium-gray: #E2E8F0;
    --border-gray: #CBD5E0;
    --text-gray: #4A5568;
    --success-green: #48BB78;
    
    /* Typography */
    --font-family-primary: 'Avenir', 'Proxima Nova', 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-family-secondary: 'Georgia', 'Crimson Text', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 24px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--charcoal-gray);
    background-color: var(--white);
    margin: 0;
    font-size: 16px;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    color: var(--charcoal-gray);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: 0 0 1rem 0;
    color: var(--text-gray);
}

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

a:hover {
    color: var(--warm-terracotta);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gather-blue);
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal-gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gather-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--warm-terracotta);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--charcoal-gray);
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gather-blue);
    color: var(--white);
    border-color: var(--gather-blue);
}

.btn-primary:hover {
    background-color: var(--warm-terracotta);
    border-color: var(--warm-terracotta);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gather-blue);
    border-color: var(--gather-blue);
}

.btn-secondary:hover {
    background-color: var(--gather-blue);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--charcoal-gray);
    border-color: var(--border-gray);
}

.btn-outline:hover {
    background-color: var(--charcoal-gray);
    color: var(--white);
    border-color: var(--charcoal-gray);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-gray) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 1;
}

.hero-image img {
    height: 500px;
    width: auto;
}

/* Page Hero (for other pages) */
.page-hero {
    background-color: var(--warm-cream);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

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

/* Values Section */
.values {
    background-color: var(--light-gray);
}

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

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

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon img {
    height: 48px;
    width: 48px;
}

.value-title {
    color: var(--gather-blue);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-gray);
}

/* Process Preview */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.step-icon {
    margin-bottom: 1rem;
}

.step-icon img {
    height: 48px;
    width: 48px;
}

.step-title {
    color: var(--gather-blue);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--warm-terracotta);
    font-weight: bold;
}

.process-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    background-color: var(--warm-cream);
}

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

.testimonial {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    font-family: var(--font-family-secondary);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--charcoal-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-author {
    color: var(--warm-terracotta);
    font-weight: 500;
    font-style: normal;
}

.testimonials-cta {
    text-align: center;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--gather-blue) 0%, var(--sage-green) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-description {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background-color: var(--warm-terracotta);
    border-color: var(--warm-terracotta);
}

.cta .btn-primary:hover {
    background-color: var(--golden-highlight);
    border-color: var(--golden-highlight);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-logo-text {
    font-weight: 700;
    color: var(--white);
}

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

.footer-nav a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin: 0.25rem 0;
    color: var(--white);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--white);
    opacity: 0.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gather-blue);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.hidden {
    display: none;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--gather-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional CSS for main.css - Page-Specific Styles */

/* How It Works Page */
.detailed-process {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: linear-gradient(135deg, var(--gather-blue), var(--sage-green));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
}

.step-text h2 {
    color: var(--gather-blue);
    margin-bottom: 1rem;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.step-details li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li::before {
    content: '✓';
    color: var(--sage-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.step-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.step-duration,
.step-cost {
    background-color: var(--warm-cream);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.step-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Portfolio Preview Section */
.portfolio-sample {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.portfolio-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    background-color: var(--sage-green);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Pricing Page */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--warm-terracotta);
    transform: scale(1.05);
}

.card-badge {
    background-color: var(--warm-terracotta);
    color: var(--white);
    padding: 0.5rem 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.card-title {
    color: var(--gather-blue);
    margin-bottom: 1rem;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.card-content {
    padding: 0 2rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.card-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card-features li::before {
    content: '✓';
    color: var(--sage-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.card-included {
    color: var(--sage-green);
    font-weight: 600;
}

/* Not Included Section */
.not-included {
    background-color: var(--light-gray);
}

.not-included-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefit-list {
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    background-color: var(--warm-terracotta);
    color: var(--white);
}

.benefit-icon.positive {
    background-color: var(--sage-green);
}

.benefit-text strong {
    color: var(--charcoal-gray);
    display: block;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.faq-question {
    color: var(--gather-blue);
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* Portfolio Page */
.portfolio-filters {
    background-color: var(--warm-cream);
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    border: 2px solid var(--border-gray);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gather-blue);
    color: var(--white);
    border-color: var(--gather-blue);
}

.portfolio-examples {
    display: grid;
    gap: 4rem;
}

.portfolio-example {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-example:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.portfolio-example:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.portfolio-example:nth-child(even) .example-image {
    order: 2;
}

.portfolio-example:nth-child(even) .example-content {
    order: 1;
}

.example-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
}

.example-title {
    color: var(--gather-blue);
    margin-bottom: 1rem;
}

.example-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    background-color: var(--warm-cream);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    color: var(--charcoal-gray);
}

.example-challenge,
.example-solution {
    margin-bottom: 1.5rem;
}

.example-challenge h3,
.example-solution h3 {
    color: var(--warm-terracotta);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.example-solution ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.example-solution li {
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
}

.example-solution li::before {
    content: '→';
    color: var(--sage-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.example-testimonial {
    font-family: var(--font-family-secondary);
    font-style: italic;
    color: var(--charcoal-gray);
    padding: 1rem;
    background-color: var(--warm-cream);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--warm-terracotta);
    margin: 1.5rem 0 0.5rem;
}

/* About Page */
.founder-story,
.founder-profile {
    padding: 4rem 0;
}

.story-content,
.profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-problems {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.story-problems li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.story-problems li::before {
    content: '×';
    color: var(--warm-terracotta);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.profile-content {
    grid-template-columns: 1fr 2fr;
}

.profile-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
}

.profile-intro {
    color: var(--warm-terracotta);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.profile-credentials {
    background-color: var(--warm-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin-top: 2rem;
}

.profile-credentials h3 {
    color: var(--gather-blue);
    margin-bottom: 1rem;
}

.profile-credentials ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-credentials li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.profile-credentials li::before {
    content: '✓';
    color: var(--sage-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mission-statement {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gather-blue);
    font-family: var(--font-family-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.values-detailed {
    background-color: var(--light-gray);
    padding: 3rem 0;
    border-radius: var(--border-radius-lg);
}

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

.value-card:hover {
    transform: translateY(-4px);
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.approach-subtitle {
    color: var(--warm-terracotta);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.approach-subtitle:first-child {
    margin-top: 0;
}

/* Contact Page */
.contact-methods {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-method.primary {
    background: linear-gradient(135deg, var(--gather-blue), var(--sage-green));
    color: var(--white);
}

.contact-method.primary .method-title,
.contact-method.primary .method-description {
    color: var(--white);
}

.method-icon {
    margin-bottom: 1rem;
}

.method-icon img {
    height: 48px;
    width: 48px;
}

.contact-method.primary .method-icon img {
    filter: brightness(0) invert(1);
}

.contact-link {
    font-weight: 600;
    color: var(--gather-blue);
}

.response-time {
    text-align: center;
    background-color: var(--warm-cream);
    padding: 1rem;
    border-radius: var(--border-radius-md);
}

/* Contact Form */
.contact-form-section {
    background-color: var(--light-gray);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-section {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.form-section .section-title {
    font-size: 1.25rem;
    color: var(--gather-blue);
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.form-group.half {
    margin-bottom: 1rem;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background-color: var(--warm-cream);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

.info-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    margin-bottom: 1rem;
}

.info-icon img {
    height: 48px;
    width: 48px;
}

.info-title {
    color: var(--gather-blue);
    margin-bottom: 1rem;
}