/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Renk Paleti */
    --bg-cream: #FDFCF0;
    --bg-light: #FAFAFA;
    --text-dark: #1F2937;
    --text-medium: #333333;
    --text-light: #6B7280;
    --primary-gold: #D4AF37;
    --primary-rose: #C6A4A4;
    --primary-color: #D4AF37; /* Şampanya altını */
    --white: #ffffff;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    
    /* Fontlar */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Glassmorphism Navbar */
header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-serif);
    color: var(--primary-gold);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 36px;
    height: 36px;
    stroke: var(--primary-gold);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(90deg);
}

.logo span {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.admin-link {
    background: transparent;
    color: var(--primary-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    font-weight: 600;
}

.admin-link:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.admin-link::after {
    display: none;
}

/* Hero Section - Premium Design */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(198, 164, 164, 0.15) 100%),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="a" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23D4AF37;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23C6A4A4;stop-opacity:0.1" /></linearGradient></defs><rect width="100" height="100" fill="url(%23a)" /></svg>');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.4) 0%, rgba(31, 41, 55, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1.2s ease;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Butonlar - Premium Style */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E5C158 0%, var(--primary-gold) 100%);
}

.btn-full {
    width: 100%;
}

/* Bölümler */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 600;
    margin-bottom: 4rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* Hizmetler - Premium Cards */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-rose) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Hakkında */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Randevu Formu - Two Column Layout */
.appointment-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.appointment-section .section-title {
    display: none;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 0;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.appointment-left {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #A855F7 100%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}

.appointment-info-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-sans);
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: auto;
}

.info-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.info-feature-item i {
    width: 24px;
    height: 24px;
    color: var(--white);
    stroke-width: 2;
    flex-shrink: 0;
}

.appointment-right {
    background: var(--bg-cream);
    padding: 3rem;
}

.appointment-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group-half {
    width: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-group input[type="date"] {
    position: relative;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(0.4) sepia(1) saturate(5) hue-rotate(230deg);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: #6366F1;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

/* Select Wrapper (no pattern) */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    /* Avoid Windows/Chrome tiling bug on focus/open */
    background-image: none !important;
    padding-right: 44px;
    transition: all 0.3s ease;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%236366F1' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 14px 14px;
    pointer-events: none;
    opacity: 0.9;
}

.select-wrapper select:focus {
    outline: none;
    border-bottom-color: #6366F1;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
}

/* Note: `.form-group select` styling is handled via `.select-wrapper select` to prevent tiling artifacts. */

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.time-slot-btn {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.time-slot-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366F1;
    transform: translateY(-2px);
}

.time-slot-btn.selected {
    background: #6366F1;
    color: var(--white);
    border-color: #6366F1;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
}

.btn-continue {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    margin-top: 1rem;
    border-radius: 12px;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 600;
}

.btn-continue:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
}

/* Mesajlar */
.message {
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* İletişim */
.contact {
    background: var(--white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-item h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2.5rem 0;
    font-weight: 400;
}

/* Admin Panel Stilleri */
.admin-container {
    min-height: 100vh;
    background: var(--bg-light);
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.login-box h2 {
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    font-size: 2rem;
}

.dashboard {
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    color: var(--primary-gold);
    font-family: var(--font-serif);
    font-size: 2.5rem;
}

.logout-btn {
    background: var(--danger-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.logout-btn:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.appointments-table {
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.appointments-table table {
    width: 100%;
    border-collapse: collapse;
}

.appointments-table th,
.appointments-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.appointments-table th {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-rose) 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointments-table tr:hover {
    background: var(--bg-light);
}

/* Admin Toolbar (filters + stats) */
.admin-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-sm);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-value {
    margin-top: 0.35rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-serif);
}

.stat-warn .stat-value { color: #B45309; }
.stat-success .stat-value { color: #047857; }
.stat-danger .stat-value { color: #B91C1C; }

.admin-filters {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 0.75rem;
}

.admin-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(31, 41, 55, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-family: var(--font-sans);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.admin-control:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.phone-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.status-select {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: var(--font-sans);
    font-weight: 500;
}

.status-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.status-bekliyor {
    color: var(--warning-color);
    font-weight: 600;
}

.status-onaylandi {
    color: var(--success-color);
    font-weight: 600;
}

.status-iptal {
    color: var(--danger-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .appointment-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .appointment-left {
        order: 1;
        padding: 2.5rem;
    }
    
    .appointment-right {
        order: 2;
        padding: 2.5rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appointment-wrapper {
        border-radius: 16px;
    }
    
    .appointment-left {
        padding: 2rem 1.5rem;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .pricing-amount {
        font-size: 1.75rem;
    }
    
    .appointment-right {
        padding: 2rem 1.5rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .time-slot-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .dashboard-header h1 {
        font-size: 2rem;
    }

    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-filters {
        grid-template-columns: 1fr;
    }

    .appointments-table {
        overflow-x: auto;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .appointment-form {
        padding: 1.5rem;
    }
}
