/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.GenCareRev001 {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.GenCareRev014 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.GenCareRev002 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
}

.GenCareRev012 {
    height: 1px;
    background: linear-gradient(90deg, transparent, #22d3ee, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.GenCareRev005 {
    font-size: 24px;
    font-weight: 700;
    color: #22d3ee;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.GenCareRev009 {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.GenCareRev010 {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.GenCareRev010:hover {
    color: #22d3ee;
}

.GenCareRev011 {
    text-decoration: none;
    background-color: #22d3ee;
    color: #0f172a;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.GenCareRev011:hover {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
}

/* Burger Menu */
.GenCareRev006 {
    display: none;
}

.GenCareRev007 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.GenCareRev007 span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #22d3ee;
    border-radius: 2px;
}

/* Hero Section */
.GenCareRev013 {
    padding: 140px 0 80px;
}

.GenCareRev014 .GenCareRev014 {
    display: flex;
    align-items: center;
    gap: 50px;
}

.GenCareRev015 {
    flex: 1;
}

.GenCareRev016 {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    object-fit: cover;
}

.GenCareRev017 {
    flex: 1;
}

.GenCareRev018 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.GenCareRev019 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.GenCareRev020 {
    list-style: none;
    margin-bottom: 35px;
}

.GenCareRev021 {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.GenCareRev021::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a7f3d0;
    font-weight: bold;
}

.GenCareRev022 {
    display: flex;
    gap: 15px;
}

.GenCareRev023 {
    display: inline-block;
    padding: 15px 35px;
    background-color: #22d3ee;
    color: #0f172a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.GenCareRev023:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 211, 238, 0.4);
}

/* Practitioner Word */
.GenCareRev024 {
    padding: 80px 0;
    background-color: #1e293b;
}

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

.GenCareRev026 {
    position: relative;
    background: #0f172a;
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #22d3ee;
}

.GenCareRev026::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #0f172a;
}

.GenCareRev027 {
    font-style: italic;
    font-size: 20px;
    color: #e2e8f0;
}

.GenCareRev029 {
    font-weight: 700;
    font-size: 18px;
    color: #22d3ee;
}

.GenCareRev030 {
    font-size: 14px;
    color: #94a3b8;
}

/* FAQ Section */
.GenCareRev031 {
    padding: 80px 0;
}

.GenCareRev032 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #ffffff;
}

.GenCareRev033 {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.GenCareRev034 {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.GenCareRev035 {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    color: #a7f3d0;
}

.GenCareRev035::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.GenCareRev034[open] .GenCareRev035::after {
    content: '-';
}

.GenCareRev036 {
    padding: 0 20px 20px;
    color: #cbd5e1;
    font-size: 15px;
}

/* For Whom Accordion */
.GenCareRev037 {
    padding: 80px 0;
    background-color: #0f172a;
}

.GenCareRev038 {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    color: #94a3b8;
}

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

.GenCareRev040 {
    border-bottom: 1px solid #1e293b;
    padding: 10px 0;
}

.GenCareRev041 {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #e2e8f0;
    list-style: none;
    transition: color 0.3s;
}

.GenCareRev041:hover {
    color: #22d3ee;
}

.GenCareRev042 {
    padding: 10px 15px 20px;
    color: #94a3b8;
}

/* Price Switcher Section */
.GenCareRev043 {
    padding: 80px 0;
    background-color: #1e293b;
}

.GenCareRev044 {
    text-align: center;
}

.GenCareRev045 {
    display: none;
}

.GenCareRev046 {
    display: inline-block;
    padding: 12px 30px;
    background: #0f172a;
    margin: 0 5px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    border: 2px solid #22d3ee;
    transition: all 0.3s;
}

.GenCareRev045:checked + .GenCareRev046 {
    background: #22d3ee;
    color: #0f172a;
}

.GenCareRev047 {
    display: none;
}

#GenCareRevBasic:checked ~ .GenCareRevContentBasic {
    display: block;
}

#GenCareRevPro:checked ~ .GenCareRevContentPro {
    display: block;
}

.GenCareRev048 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.GenCareRev049 {
    background: #0f172a;
    padding: 40px;
    border-radius: 20px;
    width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    border: 1px solid #334155;
}

.GenCareRev049.GenCareRevHighlight {
    border: 2px solid #22d3ee;
    transform: scale(1.05);
}

.GenCareRev049 h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.GenCareRev050 {
    font-size: 28px;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 25px;
}

.GenCareRev051 {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.GenCareRev051 li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    color: #94a3b8;
}

.GenCareRev051 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #22d3ee;
}

.GenCareRev052 {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #22d3ee;
    color: #22d3ee;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.GenCareRev052:hover {
    background: #22d3ee;
    color: #0f172a;
}

/* 3 Big Text Sections */
.GenCareRev053 {
    padding: 80px 0;
}

.GenCareRev054 {
    background: #1e293b;
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 40px;
}

.GenCareRev055 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #a7f3d0;
}

.GenCareRev056 {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.GenCareRev057 {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.GenCareRev057 li {
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
}

.GenCareRev057 li strong {
    display: block;
    color: #22d3ee;
    margin-bottom: 5px;
}

/* Regular Practice Section */
.GenCareRev058 {
    padding: 80px 0;
    background-color: #0f172a;
}

.GenCareRev059 {
    display: flex;
    align-items: center;
    gap: 60px;
}

.GenCareRev060 {
    flex: 1;
}

.GenCareRev065 {
    flex: 1;
}

.GenCareRev061 {
    font-size: 32px;
    margin-bottom: 25px;
}

.GenCareRev063 {
    list-style: none;
}

.GenCareRev064 {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
}

.GenCareRev064::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #22d3ee;
}

.GenCareRev066 {
    width: 100%;
    border-radius: 50% 50% 20% 80% / 50% 50% 50% 50%;
    box-shadow: 0 0 50px rgba(34, 211, 238, 0.2);
}

/* Form Section */
.GenCareRev067 {
    padding: 80px 0;
    background: #1e293b;
}

.GenCareRev068 {
    max-width: 600px;
    margin: 0 auto;
    background: #0f172a;
    padding: 50px;
    border-radius: 20px;
    border-top: 4px solid #22d3ee;
}

.GenCareRev069 {
    text-align: center;
    margin-bottom: 15px;
}

.GenCareRev070 {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 35px;
}

.GenCareRev072 {
    margin-bottom: 20px;
}

.GenCareRev073 {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.GenCareRev074, .GenCareRev075 {
    width: 100%;
    padding: 12px 15px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s;
}

.GenCareRev074:focus, .GenCareRev075:focus {
    border-color: #22d3ee;
}

.GenCareRev076 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.GenCareRev077 {
    margin-top: 5px;
}

.GenCareRev078 {
    font-size: 13px;
    color: #94a3b8;
}

.GenCareRev079 {
    color: #22d3ee;
}

.GenCareRev080 {
    width: 100%;
    padding: 15px;
    background: #22d3ee;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.GenCareRev080:hover {
    background: #a7f3d0;
}

/* Footer */
.GenCareRev081 {
    padding: 60px 0 30px;
    border-top: 1px solid #1e293b;
}

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

.GenCareRev083 {
    font-weight: 700;
    margin-bottom: 10px;
}

.GenCareRev085 {
    color: #22d3ee;
    text-decoration: none;
}

.GenCareRev086 {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
}

.GenCareRev087 {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.GenCareRev088 {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .GenCareRev014 .GenCareRev014, .GenCareRev059 {
        flex-direction: column;
    }
    .GenCareRev033 {
        grid-template-columns: 1fr;
    }
    .GenCareRev057 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .GenCareRev007 {
        display: flex;
    }
    .GenCareRev008 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        display: none;
        padding: 20px;
        border-bottom: 1px solid #22d3ee;
    }
    .GenCareRev009 {
        flex-direction: column;
        gap: 15px;
    }
    .GenCareRev006:checked ~ .GenCareRev008 {
        display: block;
    }
    .GenCareRev018 {
        font-size: 32px;
    }
    .GenCareRev049.GenCareRevHighlight {
        transform: scale(1);
    }
}