:root {
    --primary-color: #87CEEB; 
    --secondary-color: #FFC0CB;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-gradient-start: #f0f9ff;
    --bg-gradient-end: #ffffff;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: #fff;
    border-bottom: 3px solid var(--primary-color);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
}

.main-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-header p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.review-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
}

.page-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.content-section {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #444;
}

.steps-list {
    list-style-position: inside;
    counter-reset: step-counter;
}

.steps-list li {
    margin-bottom: 1rem;
    padding-left: 10px;
    position: relative;
    padding-left: 40px;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--secondary-color);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    font-size: 0.9rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: #f9fbfd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

@media (max-width: 768px) {
    .main-header h1 {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .review-content {
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }
}
.custom-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
  }
  .custom-button:hover {
    background-color: #45a049;
  }
  .language-container {
    display: flex;
    justify-content: center;
  }