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

/* Main Appointment Section */
.appointment-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content Styles */
.content-left {
    padding-right: 40px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #e5e7eb;
}

.description {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    color: #d1d5db;
    margin-bottom: 12px;
    font-size: 1rem;
}

.progress-section {
    margin-bottom: 40px;
}

.progress-item {
    margin-bottom: 30px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-header span {
    font-weight: 500;
    color: white;
}

.percentage {
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    width: 0;
    transition: width 2s ease-in-out;
    border-radius: 2px;
}

.learn-more-btn {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.learn-more-btn:hover {
    background: white;
    color: black;
}

/* Form Styles */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 15px;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    color: #374151;
    background: #f9fafb;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #6b7280;
    background: white;
}

.form-row textarea {
    resize: none;
    font-family: inherit;
}

.submit-btn {
    background: #000;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
    border-radius: 5px;
}

.submit-btn:hover {
    background: #374151;
}

/* Counters Section */
.counters-section {
    background: white;
    padding: 60px 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-icon {
    color: #d1d5db;
    margin-bottom: 20px;
    opacity: 0.6;
}

.counter-number {
    font-size: 4rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 10px;
    display: inline-block;
}

.counter-wrapper {
    margin-bottom: 10px;
}

.counter-plus {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-left: 5px;
}

.counter-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-left {
        padding-right: 0;
        text-align: center;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-title {
        font-size: 2rem;
    }

    .counter-number {
        font-size: 3rem;
    }
}