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

        :root {
            --primary: #0f5132;
            --primary-light: #198754;
            --accent: #20c997;
            --light-green: #e8f5e8;
            --white: #ffffff;
            --text-dark: #1a4d1a;
            --shadow: 0 4px 15px rgba(15, 81, 50, 0.2);
        }

        body {
            font-family: 'Baloo 2', cursive;
            background: linear-gradient(135deg, #e8f5e8, #c8e6c8, #a8d8a8, #88c088);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
    color: var(--white);
    padding: 15px 0;
    border-bottom: 4px solid var(--primary);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PHBhdGggZD0iTTI1IDVMNSA0NWg0MHoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.1;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    gap: 10px;
    text-align: center;
}

.logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


.header h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0;
}

.header-info ul {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.header-info li {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.header h3 {
    font-size: clamp(0.8rem, 2vw, 1rem);
    margin: 5px 0 0 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 81, 50, 0.85), rgba(25, 135, 84, 0.85)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiByPSI0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIG9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PHBhdGggZD0iTTI1IDVMNSA0NWg0MHoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    margin-bottom: 20px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.5);
    object-fit: cover;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.hero-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.7);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.page-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    opacity: 0.9;
}

.achievement-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .hero-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 30px;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    .hero-icon {
        margin-bottom: 12px;
    }
    
    .achievement-badge {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .hero-logo {
        width: 70px;
        height: 70px;
    }
}

        /* Buttons */
        .button-section {
            text-align: center;
            margin: 50px 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 40px;
            margin: 10px;
            border: 3px solid var(--primary-light);
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            color: var(--white);
            text-decoration: none;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50px;
            box-shadow: var(--shadow);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background: linear-gradient(135deg, var(--white), #f8f9fa);
            color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(25, 135, 84, 0.5);
        }

        .btn-outline {
            background: linear-gradient(135deg, var(--white), #f8f9fa);
            color: var(--primary-light);
            border: 3px solid var(--primary-light);
        }

        .btn-outline:hover {
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            color: var(--white);
        }

        /* Information Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 36px;
            margin: 56px 0;
        }

        .info-card {
            border: 3px solid var(--primary-light);
            padding: 40px 30px;
            text-align: center;
            background: linear-gradient(135deg, var(--white), #f8fffa);
            transition: all 0.3s ease;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(25, 135, 84, 0.15);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
        }

        .info-card:hover {
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            color: var(--white);
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(25, 135, 84, 0.3);
        }

        .info-card h3 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            color: var(--primary);
            position: relative;
        }

        .info-card h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--primary-light);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .info-card:hover h3 {
            color: var(--white);
        }

        .info-card:hover h3::after {
            background: var(--white);
            width: 80px;
        }

        .info-card p {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.6;
            color: #2d5a3d;
        }

        .info-card:hover p {
            color: var(--white);
        }

        .highlight {
            font-weight: 700;
            color: var(--primary);
        }

        .info-card:hover .highlight {
            color: var(--white);
        }

        .info-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-light);
            transition: all 0.3s ease;
        }

        .info-card:hover .info-icon {
            color: var(--white);
            transform: scale(1.1);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin: 80px 0 50px 0;
        }

        .section-header h2 {
            font-size: clamp(1.6rem, 5vw, 2.2rem);
            font-weight: 700;
            color: var(--primary);
            display: inline-block;
            padding-bottom: 10px;
            position: relative;
        }

        .section-header h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            border-radius: 2px;
        }

        /* Process Steps */
        .process-section {
            background: linear-gradient(135deg, #f0f8f0, #e6f3e6);
            padding: 60px 0;
            margin: 60px 0;
            border-top: 4px solid var(--primary-light);
            border-bottom: 4px solid var(--primary-light);
            box-shadow: inset 0 0 20px rgba(25, 135, 84, 0.1);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PHBhdGggZD0iTTI1IDVMNSA0NWg0MHoiIGZpbGw9IiMwZjUxMzIiIGZpbGwtb3BhY2l0eT0iMC4wMyIvPjwvc3ZnPg==');
            opacity: 0.1;
        }

        .steps-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .step {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-bottom: 40px;
            padding: 30px;
            border: 3px solid var(--primary-light);
            background: linear-gradient(135deg, var(--white), #f8fffa);
            transition: all 0.3s ease;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(25, 135, 84, 0.15);
            position: relative;
            overflow: hidden;
        }

        .step::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--primary-light), var(--accent));
        }

        .step:hover {
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            color: var(--white);
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
        }

        .step-number {
            width: 60px;
            height: 60px;
            border: 4px solid var(--primary-light);
            background: linear-gradient(135deg, var(--white), #f8fffa);
            color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            flex-shrink: 0;
            transition: all 0.3s ease;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(25, 135, 84, 0.2);
        }

        .step:hover .step-number {
            background: linear-gradient(135deg, var(--white), #f8f9fa);
            color: var(--primary-light);
            transform: scale(1.1);
            border-color: var(--white);
        }

        .step-content h4 {
            font-size: clamp(1.2rem, 3.5vw, 1.4rem);
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .step:hover .step-content h4 {
            color: var(--white);
        }

        .step-content p {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.6;
            color: #2d5a3d;
        }

        .step:hover .step-content p {
            color: var(--white);
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
            color: var(--white);
            padding: 60px 0;
            margin-top: 60px;
            box-shadow: 0 -4px 20px rgba(15, 81, 50, 0.3);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PHBhdGggZD0iTTI1IDVMNSA0NWg0MHoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
            opacity: 0.1;
        }

        .contact-section .section-header h2 {
            background: none;
            background-clip: initial;
            -webkit-background-clip: initial;
            color: var(--white);
            -webkit-text-fill-color: var(--white);
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        }

        .contact-section .section-header h2::after {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .contact-item {
            text-align: center;
            padding: 30px;
            border: 3px solid var(--white);
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            opacity: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover::before {
            opacity: 1;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
        }

        .contact-item h4 {
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: 700;
            margin-bottom: 15px;
            padding-bottom: 10px;
            position: relative;
        }

        .contact-item h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .contact-item:hover h4 {
            color: var(--primary);
        }

        .contact-item:hover h4::after {
            background: var(--primary);
            width: 60px;
        }

        .contact-item p {
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            line-height: 1.4;
        }

        .contact-item:hover p {
            color: #2d5a3d;
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            color: var(--primary);
            transform: scale(1.1);
        }

        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .contact-person {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-person:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(5px);
            border-color: rgba(255, 255, 255, 0.4);
        }
        
        .person-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
            text-align: left;
        }
        
        .person-name {
            font-weight: 600;
            font-size: 1rem;
            color: var(--white);
        }
        
        .person-number {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }
        
        .contact-actions {
            display: flex;
            gap: 8px;
        }
    
.btn-call, .btn-fb {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-call {
    background: #34a853;
    color: white;

    pointer-events: auto;
}

.btn-call:hover {
    background: #2d9449;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.4);
}

.btn-fb {
    background: #1877F2;
    color: white;
   
    pointer-events: auto;
}

.btn-fb:hover {
    background: #0d5cb6;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.contact-actions {
    display: flex;
    gap: 8px;
 
    position: relative;
    z-index: 10;
}


.contact-person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    pointer-events: none;
}

.contact-person > * {
    pointer-events: auto;
}
        .contact-item:hover .person-name,
        .contact-item:hover .person-number {
            color: var(--primary) !important;
        }

        .contact-item:hover .contact-person {
            background: rgba(25, 135, 84, 0.15) !important;
            border-color: var(--primary-light) !important;
        }

        .contact-item:hover .contact-person:hover {
            background: rgba(25, 135, 84, 0.25) !important;
        }

        /* Important Dates */
        .important-dates {
            background: linear-gradient(135deg, var(--white), #f8fffa);
            color: var(--primary);
            border: 4px solid var(--primary-light);
            padding: 40px;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(25, 135, 84, 0.2);
            position: relative;
            z-index: 1;
        }

        .important-dates h3 {
            font-size: clamp(1.4rem, 4vw, 1.8rem);
            font-weight: 700;
            margin-bottom: 30px;
            padding-bottom: 15px;
            color: var(--primary);
            position: relative;
        }

        .important-dates h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            border-radius: 2px;
        }

        .date-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 2px solid var(--primary-light);
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            font-weight: 500;
            color: #2d5a3d;
        }

        .date-item:last-child {
            border-bottom: none;
        }

        .date-value {
            font-weight: 700;
            color: var(--primary);
        }
/* ===== Footer (Final Clean Version) ===== */

.footer {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 30px 0;
    border-top: 4px solid var(--accent);
    box-shadow: 0 -4px 15px rgba(15, 81, 50, 0.3);
    position: relative;
    overflow: hidden;
}

/* footer-এর নিচে যেন অতিরিক্ত ফাঁকা না থাকে */
footer {
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MCA1MCI+PHBhdGggZD0iTTI1IDVMNSA0NWg0MHoiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    opacity: 0.1;
}

.footer-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.community {
    text-align: left;
}

.community h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.community h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.community ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community ul li {
    margin-bottom: 10px;
}

.community ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    font-weight: 600;
}

.community ul li a strong {
    font-weight: 700;
}

.community ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    margin: 5px 0;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* Responsive Design for Footer */
@media (max-width: 768px) {
    .community {
        text-align: center;
    }
    
    .community ul li a:hover {
        transform: none;
    }
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .community {
        text-align: center;
    }
    
    .community ul li a:hover {
        transform: none;
    }
    
    .footer-center {
        order: -1; /* This will put the center content first on mobile */
    }
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
            }

            .subtitle {
                font-size: clamp(1rem, 4vw, 1.2rem);
                padding: 0 20px;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .date-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .btn {
                display: block;
                margin: 10px auto;
                width: 100%;
                max-width: 300px;
                font-size: clamp(1rem, 4vw, 1.1rem);
            }

            .section-header h2 {
                font-size: clamp(1.4rem, 6vw, 1.8rem);
            }

            .main-content,
            .process-section,
            .contact-section {
                padding: 40px 0;
            }

            .hero {
                padding: 60px 0 40px;
            }

            .hero-icon {
                font-size: 3rem;
            }

            /* Responsive Contact List */
            .contact-person {
                flex-direction: column;
                gap: 12px;
                text-align: center;
                padding: 15px;
            }
            
            .person-info {
                align-items: center;
                text-align: center;
            }
            
            .contact-actions {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .header h1 {
                font-size: 1.4rem;
            }

            .info-card,
            .step,
            .contact-item {
                padding: 25px 20px;
            }

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

            .subtitle {
                font-size: 1rem;
            }

            .important-dates {
                padding: 30px 20px;
            }

            .contact-person {
                padding: 12px 10px;
            }
            
            .btn-call, .btn-fb {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
        }
        html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

        
