 :root {
            --yc-green: #006747;
            --yc-gold: #ffcc00;
            --yc-light-green: #4A7C59;
            --yc-dark-gray: #333333;
            --yc-light-gray: #F5F5F5;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--yc-dark-gray);
            line-height: 1.6;
        }

        /* Header Styles */
        .page-header {
            background: linear-gradient(135deg, var(--yc-green) 0%, var(--yc-light-green) 100%);
            color: white;
            padding: 4rem 0 3rem;
            margin-bottom: 3rem;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.95;
        }

        /* Card Styles matching YC design */
        .transfer-card {
            background: white;
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }

        .transfer-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }

        .transfer-card .card-header {
            background: var(--yc-green);
            color: white;
            padding: 1.5rem;
            border: none;
        }

        .transfer-card.transfer-out .card-header {
            background: var(--yc-gold);
            color: #121212;
        }

        .transfer-card .card-header h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: 0.5px;
        }

        .transfer-card .card-body {
            padding: 2rem;
        }

        .transfer-card .lead-text {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        /* Section Headers */
        .section-header {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--yc-green);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--yc-gold);
        }

        .transfer-out .section-header {
            color: var(--yc-gold);
            border-bottom-color: var(--yc-green);
        }

        /* List Styles */
        .step-list {
            list-style: none;
            padding-left: 0;
            counter-reset: step-counter;
        }

        .step-list li {
            counter-increment: step-counter;
            position: relative;
            padding-left: 3rem;
            padding-top: 0.5rem;
            padding-bottom: 1rem;
            margin-bottom: 0.5rem;
        }

        .step-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0.5rem;
            background: var(--yc-green);
            color: white;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .transfer-out .step-list li::before {
            background: var(--yc-gold);
            color: #121212;
        }

        .info-list {
            list-style: none;
            padding-left: 0;
        }

        .info-list li {
            padding: 0.75rem 0;
            padding-left: 1.75rem;
            position: relative;
        }

        .info-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--yc-green);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .transfer-out .info-list li::before {
            color: var(--yc-gold);
        }

        /* Button Styles */
        .btn-yc-primary {
            background: var(--yc-green);
            color: white;
            padding: 0.875rem 2rem;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
        }

        .btn-yc-primary:hover {
            background: var(--yc-light-green);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,103,71,0.3);
        }

        .btn-yc-secondary {
            background: var(--yc-gold);
            color: #121212;
            padding: 0.875rem 2rem;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
        }

        .btn-yc-secondary:hover {
            background: #B08413;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(198,146,20,0.3);
        }

        /* Info Box Styles */
        .info-box {
            background: var(--yc-light-gray);
            border-left: 4px solid var(--yc-gold);
            padding: 1.25rem;
            margin: 1.5rem 0;
            border-radius: 4px;
        }

        .info-box h4 {
            color: var(--yc-green);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .info-box p {
            margin: 0;
            color: #555;
        }

        /* Quick Links Section */
        .quick-links {
            background: var(--yc-light-gray);
            padding: 3rem 0;
            margin-top: 4rem;
        }

        .quick-link-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .quick-link-card:hover {
            box-shadow: 0 6px 16px rgba(0,0,0,0.12);
            transform: translateY(-5px);
            color: inherit;
        }

        .quick-link-card h3 {
            color: var(--yc-green);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .quick-link-card p {
            color: #666;
            margin: 0;
            font-size: 0.95rem;
        }

        /* Contact Bar */
        .contact-bar {
            background: var(--yc-dark-gray);
            color: white;
            padding: 1.5rem 0;
            margin-top: 3rem;
        }

        .contact-bar strong {
            color: var(--yc-gold);
        }

        .contact-bar a {
            color: white;
            text-decoration: underline;
        }

        .contact-bar a:hover {
            color: var(--yc-gold);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            .step-list li {
                padding-left: 2.5rem;
            }
        }