* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.5;
}

.status-bar {
    background: transparent;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    position: relative;
    z-index: 100;
}

.app-container {
    min-height: 100vh;
    position: relative;
    padding-bottom: 80px;
}

.screen {
    display: none;
    min-height: calc(100vh - 80px);
    position: relative;
}

.screen.active {
    display: block;
}

/* Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #B0B0B0;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item.active {
    color: #0A2351;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

/* Welcome Screen */
.welcome-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.welcome-illustration {
    width: 280px;
    height: 280px;
    margin-bottom: 40px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.welcome-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    max-width: 300px;
}

.btn-primary {
    background: #0A2351;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    transition: all 0.2s;
    margin-bottom: 16px;
}

.btn-primary:hover {
    background: #081A3D;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: white;
    color: #0A2351;
}

/* Login Screen */
.login-screen {
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

.login-form {
    position: relative;
    z-index: 3;
    background: white;
    padding: 40px 30px;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    margin-top: auto;
}

.login-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #2E2E2E;
}

.login-subtitle {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 32px;
    color: #666666;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #2E2E2E;
    background: white;
}

.form-input::placeholder {
    color: #B0B0B0;
}

.social-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.google-btn {
    background: #4285F4;
    color: white;
}

.google-btn:hover {
    background: #3367D6;
}

.apple-btn {
    background: #000000;
    color: white;
}

.apple-btn:hover {
    background: #333333;
}

.social-icon {
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #B0B0B0;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E0E0E0;
}

.divider span {
    padding: 0 16px;
}

/* Dashboard */
.dashboard {
    padding: 20px;
    background: #F8F9FA;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.greeting {
    font-size: 24px;
    font-weight: 700;
    color: #2E2E2E;
}

.header-icons {
    display: flex;
    gap: 16px;
}

.icon-button {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.build-streak {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.streak-title {
    font-size: 16px;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 12px;
}

.streak-days {
    display: flex;
    gap: 8px;
}

.streak-day {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E8F0FE;
    color: #0A2351;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.streak-day.active {
    background: #0A2351;
    color: white;
}

.project-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    margin-bottom: 16px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 8px;
}

.project-progress {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E0E0E0;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0A2351, #3B82F6);
    width: 5%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.btn-view-plan {
    background: #0A2351;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.quick-tools {
    margin-bottom: 20px;
}

.tools-title {
    font-size: 18px;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 16px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tool-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.tool-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    background: #E8F0FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-name {
    font-size: 12px;
    font-weight: 600;
    color: #2E2E2E;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s;
}

.info-card:hover {
    transform: translateX(4px);
}

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

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E8F0FE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 14px;
    color: #666666;
}

.card-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E8F0FE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #0A2351;
}

.team-avatars {
    display: flex;
    margin-right: 12px;
}

/* Phase 1 Screens */
.phase-container {
    padding: 20px;
    background: white;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.back-arrow {
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #0A2351;
}

.phase-title {
    font-size: 20px;
    font-weight: 700;
    color: #2E2E2E;
    flex: 1;
}

.phase-step {
    font-size: 14px;
    color: #666666;
}

.phase-content {
    text-align: center;
    margin-bottom: 32px;
}

.phase-illustration {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 16px;
    overflow: hidden;
}

.phase-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phase-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 12px;
}

.phase-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 24px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.phase-button {
    background: #0A2351;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
}

.needs-checklist {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.expert-card {
    background: #E8F0FE;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.expert-title {
    font-size: 14px;
    font-weight: 600;
    color: #0A2351;
    margin-bottom: 4px;
}

.expert-text {
    font-size: 12px;
    color: #666666;
}

.needs-list {
    margin-bottom: 24px;
}

.needs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.need-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F8F9FA;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.need-item:hover {
    background: #E8F0FE;
}

.need-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.need-checkbox.checked {
    background: #0A2351;
    border-color: #0A2351;
    color: white;
}

.need-text {
    font-size: 14px;
    color: #2E2E2E;
    flex: 1;
}

.add-more {
    color: #0A2351;
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
    cursor: pointer;
    text-align: center;
}

.navigation-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary {
    background: white;
    color: #0A2351;
    border: 2px solid #0A2351;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.btn-primary-full {
    background: #0A2351;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

/* Theme Selection */
.themes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.theme-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s;
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.theme-image {
    width: 100%;
    height: 100px;
    background: #E8F0FE;
    position: relative;
}

.lock-button {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: #0A2351;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

.theme-name {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #2E2E2E;
    text-align: center;
}

/* Timeline */
.timeline-display {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.timeline-main {
    font-size: 36px;
    font-weight: 700;
    color: #0A2351;
    margin-bottom: 8px;
}

.timeline-label {
    font-size: 16px;
    color: #666666;
}

.breakdown-list {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-phase {
    font-size: 14px;
    color: #2E2E2E;
}

.breakdown-time {
    font-size: 14px;
    font-weight: 600;
    color: #0A2351;
}

/* Family Roles */
.role-section {
    margin-bottom: 24px;
}

.role-title {
    font-size: 16px;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 12px;
}

.role-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.role-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
}

.role-select {
    flex: 1;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

/* Completion Screen */
.completion-content {
    text-align: center;
}

.trophy-illustration {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.completion-title {
    font-size: 24px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 16px;
}

.progress-section {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.progress-text {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
}

.completion-progress-bar {
    width: 100%;
    height: 8px;
    background: #E0E0E0;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.completion-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6CC76F, #4CAF50);
    width: 20%;
    border-radius: 4px;
}

.completion-percentage {
    font-size: 18px;
    font-weight: 700;
    color: #6CC76F;
}

.checklist {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: left;
}

.checklist-title {
    font-size: 16px;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #2E2E2E;
}

.checklist-icon {
    width: 20px;
    height: 20px;
    background: #6CC76F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* Phases Overview */
.phases-overview {
    padding: 20px;
    background: #F8F9FA;
}

.phases-header {
    text-align: center;
    margin-bottom: 32px;
}

.phases-title {
    font-size: 24px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 8px;
}

.phases-subtitle {
    font-size: 16px;
    color: #666666;
}

.phases-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase-overview-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.2s;
}

.phase-overview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.phase-overview-card.active {
    background: linear-gradient(135deg, #0A2351, #3B82F6);
    color: white;
}

.phase-overview-card.disabled {
    background: white;
    color: #B0B0B0;
    cursor: not-allowed;
}

.phase-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    background: #E8F0FE;
    color: #0A2351;
}

.phase-overview-card.active .phase-number {
    background: white;
    color: #0A2351;
}

.phase-overview-card.disabled .phase-number {
    background: #F0F0F0;
    color: #B0B0B0;
}

.phase-info {
    flex: 1;
}

.phase-overview-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.phase-overview-description {
    font-size: 14px;
    opacity: 0.8;
}

.phase-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #E8F0FE;
    color: #0A2351;
}

.phase-overview-card.active .phase-status {
    background: white;
    color: #0A2351;
}

.phase-overview-card.disabled .phase-status {
    background: #F0F0F0;
    color: #B0B0B0;
}

.phases-cta {
    text-align: center;
    margin-top: 32px;
}

.cta-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 480px) {
    .welcome-title {
        font-size: 28px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
}

/* Onboarding Styles */
.onboarding-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    text-align: center;
}

.onboarding-illustration {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboarding-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.onboarding-title {
    font-size: 28px;
    font-weight: 700;
    color: #2E2E2E;
    margin: 0 0 16px 0;
}

.onboarding-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

/* Welcome Screen */
.welcome-house {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
}

.welcome-house svg {
    width: 100%;
    height: 100%;
}

/* Feature Slides */
.feature-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    text-align: center;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #2E2E2E;
    margin: 0 0 16px 0;
}

.feature-description {
    font-size: 16px;
    color: #666666;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 300px;
}

.feature-illustration {
    width: 280px;
    height: 280px;
    margin: 0 auto 40px;
    border-radius: 12px;
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E0E0E0;
    transition: background 0.3s ease;
}

.dot.active {
    background: #0A2351;
}

/* Setup Form */
.setup-form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.setup-form h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2E2E2E;
    margin: 20px 0;
    text-align: center;
}

.setup-form .subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0 0 30px 0;
    text-align: center;
}

.form-input {
    width: 100%;
    max-width: 320px;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
    background: #fff;
}

.form-input:focus {
    outline: none;
    border-color: #0A2351;
    box-shadow: 0 0 0 3px rgba(10, 35, 81, 0.1);
}

.form-select {
    width: 100%;
    max-width: 320px;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
    background: #fff;
    color: #666;
}

.form-select:focus {
    outline: none;
    border-color: #0A2351;
}

.legal-text {
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin: 20px 0;
    line-height: 1.4;
}

.example-text {
    font-size: 14px;
    color: #999999;
    text-align: center;
    margin: 8px 0 20px 0;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background: #E0E0E0;
    margin-bottom: 30px;
}

.progress-bar-fill {
    height: 100%;
    background: #F5A623;
    transition: width 0.3s ease;
}

/* Loading Screen */
.loading-screen {
    background: #0A2351;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
}

.cloud-illustration {
    width: 200px;
    height: 120px;
    margin: 0 auto 30px;
}

.loading-screen h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Social Login Buttons */
.social-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.google-btn {
    background: #fff;
    color: #333;
    border: 1px solid #E0E0E0;
}

.google-btn:hover {
    background: #f8f9fa;
}

.apple-btn {
    background: #000;
    color: white;
}

.apple-btn:hover {
    background: #333;
}

.social-icon {
    width: 20px;
    height: 20px;
}