/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* ===== CUSTOM SCROLLBAR ===== */
/* Scrollbar for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #781921 0%, #60060f 100%);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8B1A1A 0%, #781921 100%);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #60060f 0%, #4a0509 100%);
}

/* Scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #781921 #f1f1f1;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== COMMON SECTION STYLES ===== */
.section-header {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #333;
    font-weight: normal;
}

.section-header-center {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #333;
    font-weight: normal;
    text-align: center;
}

.section-title {
    font-size: 42px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
    font-weight: bold;
}

/* ===== COMMON UTILITIES ===== */
.icon {
    font-size: 16px;
}

/* ===== COMMON FORM STYLES ===== */
.form-input,
.form-textarea {
    padding: 15px 18px;
    border: none;
    background-color: #F1F1E9;
    border-radius: 8px;
    font-size: 15px;
    color: #170006;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: #e8e8dc;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* ===== COMMON CARD STYLES ===== */
.card-content {
    padding: 25px;
}

/* ===== COMMON TEXT STYLES ===== */
.content-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== COMMON ICON STYLES ===== */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #781921;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.icon-circle svg {
    width: 40px;
    height: 40px;
    fill: white;
}

/* ===== COMMON TRANSITIONS ===== */
.transition-all {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: all 0.3s ease;
}
