.swapnojoyi-wrapper-cb9d43e7 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #334155;
    line-height: 1.6;
}
.swapnojoyi-wrapper-cb9d43e7 .swap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.swapnojoyi-wrapper-cb9d43e7 .swap-section {
    padding: 80px 0;
}
.swapnojoyi-wrapper-cb9d43e7 .swap-light-bg {
    background-color: #F8FAFC;
}
.swapnojoyi-wrapper-cb9d43e7 .swap-section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #0F172A;
}
.swapnojoyi-wrapper-cb9d43e7 .swap-section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

/* Hero */
.swap-hero {
    padding: 100px 0;
    color: #fff;
    text-align: center;
}
.swap-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}
.swap-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E2E8F0;
}
.swap-hero-desc {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #CBD5E1;
}
.swap-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.swap-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}
.swap-btn:hover {
    opacity: 0.9;
}
.swap-btn-accent {
    color: #fff;
}
.swap-btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* Intro */
.swap-highlight-box {
    background: #EFF6FF;
    border-left: 4px solid #2563EB;
    padding: 20px;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.swap-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.swap-service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.swap-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.swap-service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.swap-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swap-service-content {
    padding: 30px;
}
.swap-service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0F172A;
}
.swap-features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.swap-features-list li::before {
    content: '✓';
    color: #2563EB;
    margin-right: 8px;
    font-weight: bold;
}

/* Process */
.swap-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.swap-step-card {
    text-align: center;
    padding: 20px;
}
.swap-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 15px;
}
.swap-step-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0F172A;
}

/* Form */
.swap-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
    max-width: 900px;
    margin: 0 auto;
}
.swap-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .swap-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.swap-form-group.full-width {
    grid-column: 1 / -1;
}
.swap-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
}
.swap-form-group input[type="text"],
.swap-form-group input[type="email"],
.swap-form-group input[type="date"],
.swap-form-group select,
.swap-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}
.swap-form-group input[disabled],
.swap-form-group select[disabled],
.swap-form-group textarea[disabled] {
    background-color: #f1f5f9;
    cursor: not-allowed;
}
.swap-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}
.swap-checkbox input {
    margin-top: 5px;
}
.swap-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
