/* Modern Minimalistic Finance Website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: #666;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #1a1a1a;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    background: #ffffff;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 200;
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.title-word {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }

.hero-text {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Titles */
.section-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 200;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.stablecoins h2 {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

.blue-underline {
    border-bottom: 2px solid rgba(0, 224, 255, 0.5);
    padding-bottom: 1px;
}

.green-underline {
    border-bottom: 2px solid rgba(0, 255, 133, 0.5);
    padding-bottom: 1px;
}

.blue-text {
    color: #00E0FF;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-number {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    min-width: 30px;
    font-family: 'JetBrains Mono', monospace;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: lowercase;
}

.feature-content p {
    color: #666;
    font-size: 16px;
    font-weight: 300;
}

/* Wallet Section */
.wallet {
    padding: 120px 0;
    background: #ffffff;
}

.wallet-content {
    max-width: 1200px;
    margin: 0 auto;
}

.wallet-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: center;
}

.wallet-dashboard {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wallet-address-section {
    margin-bottom: 24px;
}

.section-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.address-display {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px;
}

.address-value {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    word-break: break-all;
    line-height: 1.5;
    margin: 0;
}

.overview-container {
    display: flex;
    gap: 24px;
    align-items: center;
}

.overview-section {
    flex: 1;
}

.divider {
    width: 1px;
    background: #1a1a1a;
    height: 150px;
    align-self: center;
    margin-top: 35px;
}

.balance-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.balance-label {
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

.balance-value {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Segoe UI', sans-serif;
}

.total-display {
    text-align: center;
    padding: 20px 0;
}

.total-amount {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 8px;
    background: rgba(0, 255, 133, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
}

.total-subtitle {
    font-size: 12px;
    color: #1a1a1a;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.refresh-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: lowercase;
    align-self: center;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.refresh-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #ffffff;
}

.services-content {
    text-align: center;
}

.services-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.service-number {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    font-family: 'JetBrains Mono', monospace;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: lowercase;
}

.service-content p {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: #ffffff;
}

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

.process-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
    font-weight: 300;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.step-content p {
    color: #666;
    font-size: 16px;
    font-weight: 300;
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background: #ffffff;
}

.stats-content {
    text-align: center;
}

.stats-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 80px;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #1a1a1a;
    padding: 60px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    border-top-color: #1a1a1a;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Terminal Section */
.terminal {
    padding: 120px 0;
    background: #ffffff;
}

.terminal-content {
    text-align: center;
}

.terminal-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

.terminal-window {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.terminal-header {
    background: #2a2a2a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red { background: #ff5f56; }
.terminal-button.yellow { background: #ffbd2e; }
.terminal-button.green { background: #27ca3f; }

.terminal-title {
    color: #999;
    font-size: 14px;
    font-weight: 300;
}

.terminal-body {
    padding: 30px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-prompt {
    color: #00ff85;
    font-weight: 500;
}

.terminal-path {
    color: #666;
}

.terminal-command {
    color: #ffffff;
}

.terminal-text {
    color: #cccccc;
}

.terminal-progress {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.progress-bar {
    width: 200px;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 100%;
    height: 100%;
    background: #00ff85;
    animation: progressFill 2s ease-in-out;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Stablecoins Section */
.stablecoins {
    padding: 120px 0;
    background: #ffffff;
}

.stablecoins-content {
    text-align: center;
}

.stablecoins-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.subsection-title {
    font-size: 24px;
    font-weight: 300;
    margin: 60px 0 20px;
    color: #1a1a1a;
}

.subsection-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Base Vertical Stack Layout */
.token-stack {
    max-width: 400px;
    margin: 0 auto;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.stack-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.stack-text p {
    font-size: 14px;
    color: #1a1a1a;
    margin: 0;
}

/* Stablecoins Section Organization */
.stablecoins-header {
    text-align: center;
    margin-bottom: 60px;
}

.stablecoins-info {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stablecoins-tokens {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: lowercase;
}

.stablecoins-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.subsection-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-transform: lowercase;
}

.subsection-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Simple Token Display */
.token-stack {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.stack-item {
    display: flex;
    align-items: center;
    padding: 30px 0;
    width: 41%;
    margin: 0 auto;
    transform: translateX(-5px);
    position: relative;
}

.token-logo {
    position: absolute;
    left: calc(50% - 60px);
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.stack-text {
    position: absolute;
    left: calc(50% + 30px);
    top: 50%;
    transform: translateY(-50%);
}

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

.stack-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.stack-text p {
    font-size: 14px;
    color: #1a1a1a;
    margin: 0;
}

.token-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
}

.token-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .investment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .investment-dashboard {
        order: -1;
    }
    
    .investment-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-item {
        font-size: 14px;
    }
}

/* Investment Section */
.investment {
    padding: 120px 0;
    background: #ffffff;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.investment-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.investment-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.investment-feature {
    margin-bottom: 40px;
}

.investment-feature h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #1a1a1a;
    text-transform: lowercase;
}

.investment-feature p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.investment-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-outline {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 40px;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: transparent;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.investment-dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px;
}

.dashboard-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.dashboard-token {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.loan-id {
    font-size: 11px;
    font-weight: 400;
    color: #999;
    text-transform: lowercase;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
}

.dashboard-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    text-transform: lowercase;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Segoe UI', sans-serif;
}

.detail-value.positive {
    color: #00FF85;
    font-weight: 700;
}

.dashboard-stats {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.stat-label {
    font-size: 11px;
    color: #999;
    text-transform: lowercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 400;
    font-family: 'JetBrains Mono', monospace;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: -1px;
}

.stat-value-green {
    color: #00FF85;
}

.stat-change {
    font-size: 14px;
    font-weight: 500;
}

.stat-percent {
    color: #00FF85;
}

.stat-period {
    color: #ffffff;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: #ffffff;
}

.security-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.security-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.security-checkmark {
    font-size: 24px;
    color: #00FF85;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 5px;
}

.security-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.security-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Public Ledger Section */
.ledger {
    padding: 80px 0;
    background: #ffffff;
}

.ledger-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ledger-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
}

.ledger-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.summary-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
}

.summary-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 8px;
}

.summary-value.green {
    color: #00FF85;
}

.summary-description {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

.ledger-table {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #f0f0f0;
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.table-row:hover {
    background: #f5f5f5;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 20px 15px;
    font-size: 14px;
    color: #1a1a1a;
    border-right: 1px solid #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
}

.table-cell:last-child {
    border-right: none;
}

.table-cell.completed {
    color: #00FF85;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ledger-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .table-cell {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px;
    }
    
    .table-cell:last-child {
        border-bottom: none;
    }
}

/* Quote Section */
.quote {
    padding: 120px 0;
    background: #ffffff;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Welcome Section */
.welcome {
    padding: 120px 0;
    background: #ffffff;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}
