body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f2;
}

.profile-container {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

/* LEFT CONTENT */
.main {
    flex: 1;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.card h2 {
    margin-top: 0;
    font-size: 24px;
    color: #222;
    border-left: 5px solid #4092dc;
    padding-left: 12px;
}

.card p {
    line-height: 1.6;
    color: #444;
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #66b314;
}

.btn-submit {
    background: #4092dc;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #5aa010;
}

/* RIGHT SIDEBAR */
.sidebar {
    width: 320px;
}

.sidebar-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.sidebar img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.sidebar h3 {
    margin: 10px 0;
}

.btn-book {
    display: block;
    margin: 15px 0;
    padding: 12px;
    background: #66b314;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-book:hover {
    background: #5aa010;
}

/* PRICE BADGE */
.styles_badge__iRHzw {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    background: #e9f5db;
    border: 1px solid #66b314;
    position: relative;
}

.styles_badge__iRHzw p {
    margin: 0;
    font-weight: bold;
    color: #2e6f06;
}
.phone-link {
    display: block;
    text-align: center;
    background: #4092dc;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 16px;
}

.styles_badge__iRHzw span {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 14px;
    height: 14px;
    background: #66b314;
    border-radius: 50%;
}
.education
 {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
	text-align: left;
}

/* ADAPTIVE */
@media (max-width: 900px) {
    .profile-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        order: -1; /* фото буде зверху на мобільному */
    }
}
.preparation-block{
    background:#fff;
    border-radius:16px;
    padding:28px;
    box-shadow:0 6px 18px rgba(0,0,0,0.04);
    margin-bottom:24px;
}

.preparation-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    margin-bottom:20px;
}

.preparation-title{
    margin-top: 0;
    
    color: #222;
    border-left: 5px solid #4092dc;
    padding-left: 12px;
    font-size:22px;
    font-weight:700;
    margin:0;
}

.dropdown-icon{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#eef6e3;
    position:relative;
}

.dropdown-icon::after{
    content:"";
    position:absolute;
    top:7px;
    left:6px;
    width:8px;
    height:8px;
    border-right:2px solid #66b314;
    border-bottom:2px solid #66b314;
    transform:rotate(45deg);
}

.preparation-content{
    transition:all .3s ease;
}

.content-title{
    font-weight:600;
    margin-bottom:14px;
    font-size:16px;
}

.levels{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.levels li {
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, .1);
}
.levels li a{
       color: #0e0e0e;
    font-size: 14px;
    text-decoration: none;
    transition: .2s;
}

.levels li:hover{
    background:#66b314;
    color:#fff;
}

/* Адаптив */
@media(max-width:768px){
    .preparation-block{
        padding:20px;
    }
    .preparation-title{
        font-size:18px;
    }
}
.card h1 {
    margin-top: 0;
    font-size: 26px;
    color: #222;
    border-left: 5px solid #4092dc;
    padding-left: 12px;
}
.price-flat{
    display:flex;
    align-items:center;
    gap:16px;
    background:#f3f7ed;
    border:1px solid #e2ecd6;
    padding:18px 22px;
    border-radius:14px;
    transition:.25s ease;
    max-width:320px;
}

/* hover дуже стриманий */
.price-flat:hover{
    border-color:#66b314;
    background:#eef6e3;
}

.price-icon{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#2467a4;
    color:#fff;
    font-size:22px;
    border-radius:12px;
    flex-shrink:0;
}

.price-info{
    display:flex;
    flex-direction:column;
}

.price-label{
    font-size:13px;
    color:#6b7280;
    margin-bottom:4px;
}

.price-amount{
    font-size:22px;
    font-weight:700;
    color:#1f2937;
}

.price-amount span{
    font-size:14px;
    font-weight:500;
    color:#4b5563;
}
.success-message
 {
    display: none;
    margin-top: 15px;
    color: #2e6f06;
    font-weight: bold;
}

/* адаптив */
@media(max-width:480px){
    .price-flat{
        padding:14px 16px;
    }
    .price-amount{
        font-size:18px;
    }
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #4CAF50;
    outline: none;
}

.success-message {
    display: none;
    margin-top: 15px;
    padding: 12px;
    background: #e6f9ed;
    color: #1a7f37;
    border-radius: 6px;
    font-weight: 500;
}