/* Color Variables */
:root {
    /* Primary Colors */
    --primary: hsl(20, 95%, 55%); /* Orange #F97316 */
    --primary-dark: hsl(20, 91%, 48%); /* #EA580C */
    --primary-light: hsla(20, 95%, 55%, 0.1);
    --primary-foreground: hsl(0, 0%, 100%);
    
    /* Secondary Colors */
    --secondary: hsl(213, 94%, 36%); /* Blue #1E40AF */
    --secondary-dark: hsl(213, 94%, 47%); /* #1D4ED8 */
    --secondary-light: hsla(213, 94%, 36%, 0.1);
    --secondary-foreground: hsl(0, 0%, 100%);
    
    /* Accent Colors */
    --accent: hsl(158, 64%, 40%); /* Green #059669 */
    --accent-light: hsla(158, 64%, 40%, 0.1);
    --accent-foreground: hsl(0, 0%, 100%);
    
    /* Gray Colors */
    --warm-gray: hsl(210, 11%, 98%); /* #F8FAFC */
    --gray-50: hsl(210, 40%, 98%);
    --gray-100: hsl(214, 32%, 91%);
    --gray-200: hsl(214, 13%, 89%);
    --gray-600: hsl(215, 12%, 42%);
    --gray-700: hsl(215, 16%, 25%);
    --gray-900: hsl(215, 28%, 17%);
    
    /* Base */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(215, 16%, 25%);
    --border: hsl(214, 13%, 89%);
    
    /* Typography */
    --text-primary: hsl(215, 16%, 25%);
    --text-secondary: hsl(215, 12%, 42%);
    
    /* Spacing */
    --radius: 0.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary) !important;
    font-weight: 500;
}

.text-secondary {
    color: var(--secondary) !important;
    font-weight: 500;
}

.text-accent {
    color: var(--accent) !important;
    font-weight: 500;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: white;
}

.section-gray {
    background-color: var(--warm-gray);
}

.section-light-gray {
    background-color: var(--gray-50);
}

.section-gradient {
    background: linear-gradient(to bottom right, var(--primary-light), var(--accent-light));
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    max-width: 48rem;
    margin: 0 auto;
}

.subsection-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3rem;
}

.subsection-title-center {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.subsection-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Intro Cards */
.intro-card {
    background-color: var(--warm-gray);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--primary-light);
    max-width: 64rem;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text-center {
    max-width: 64rem;
    margin: 0 auto;
}

.intro-text-center p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .intro-card {
        padding: 3rem;
    }
    
    .intro-text,
    .intro-text-center p {
        font-size: 1.25rem;
    }
}

/* Fixed Donation Button */
.donation-button-fixed {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
}

.btn-primary-fixed {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-primary-fixed:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 40;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    flex-shrink: 0;
}

.logo {
    height: 3rem;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: block;
    color: var(--gray-600);
    padding: 0.5rem;
}

.hamburger {
    width: 1.5rem;
    height: 0.125rem;
    background-color: currentColor;
    display: block;
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    top: 0.5rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-header {
    position: relative;
    z-index: 20;
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 2rem 0;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 500;
}

.hero-content {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--primary-light), var(--secondary-light));
    z-index: 10;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-container {
    position: relative;
    z-index: 20;
    padding: 4rem 0;
}

.hero-welcome {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--primary-light);
    text-align: left;
}

.hero-card p {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.hero-statement {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
    padding: 1rem 0;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-quote {
    text-align: center;
}

.hero-quote blockquote {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--secondary);
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    display: inline-block;
    max-width: 48rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-question {
        font-size: 1.875rem;
    }
    
    .hero-card {
        padding: 3rem;
    }
    
    .hero-card p {
        font-size: 1.125rem;
    }
    
    .hero-quote blockquote {
        font-size: 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    opacity: 0.9;
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background-color: transparent;
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--gray-100);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.icon-large {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
    color: var(--primary);
    margin-right: 0.75rem;
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-right: 1rem;
}

.icon-circle svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

.icon-circle-lg {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.icon-circle-lg svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

.icon-primary {
    color: var(--primary);
}

.icon-secondary {
    color: var(--secondary);
}

.icon-accent {
    color: var(--accent);
}

/* Background Colors */
.bg-primary {
    background-color: var(--primary);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-secondary-light {
    background-color: var(--secondary-light);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-accent-light {
    background-color: var(--accent-light);
}

/* Icon Header */
.icon-header {
    display: flex;
    align-items: flex-start;
}

/* Mission and Vision */
.mission-vision-item {
    text-align: center;
}

@media (min-width: 1024px) {
    .mission-vision-item {
        text-align: left;
    }
}

/* Cards */
.card {
    background-color: var(--warm-gray);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--gray-700);
}

/* Values Section */
.values-section {
    margin-bottom: 5rem;
}

/* Team */
.team-section {
    margin-bottom: 4rem;
}

.team-card {
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
    margin: 0 auto 1rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-description {
    color: var(--gray-700);
    font-size: 0.875rem;
}

/* Section Images */
.section-image {
    margin-top: 4rem;
    text-align: center;
}

.rounded-image {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
}

/* Programs Section */
.program-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.program-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.program-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke-width: 2;
}

.program-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.program-description {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.program-badge {
    background-color: var(--gray-50);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    font-style: italic;
}

/* Motivational Cards */
.motivational-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-light);
    max-width: 64rem;
    margin: 4rem auto 0;
    text-align: center;
}

.motivational-card blockquote {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .motivational-card {
        padding: 3rem;
    }
    
    .motivational-card blockquote {
        font-size: 1.5rem;
    }
}

/* Help Section */
.help-card {
    background-color: var(--warm-gray);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.help-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.help-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.help-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke-width: 2;
}

.help-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.help-description {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Volunteer Form */
.volunteer-form {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(to bottom right, var(--primary-light), var(--secondary-light));
    border-radius: 1rem;
}

.form-container {
    max-width: 32rem;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: white;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.form-textarea {
    min-height: 5rem;
    resize: vertical;
}

/* Donation Section */
.donation-step-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.donation-step-card:hover {
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    position: relative;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background-color: white;
    color: var(--gray-800);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    border: 2px solid var(--gray-200);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* Bank Account */
.bank-account-card {
    background: linear-gradient(to right, var(--secondary-light), var(--primary-light));
    border: 2px solid var(--primary-light);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.bank-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bank-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.bank-details {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.bank-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.bank-account-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.account-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.copy-btn {
    color: var(--primary);
    padding: 0.5rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.copy-btn:hover {
    color: var(--primary-dark);
}

.copy-btn svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

.bank-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Donation Actions */
.donation-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .donation-actions {
        flex-direction: row;
    }
}

/* Trust Card */
.trust-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-light);
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.trust-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.trust-card blockquote {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .trust-card {
        padding: 3rem;
    }
    
    .trust-card blockquote {
        font-size: 1.25rem;
    }
}

/* Transparency Section */
.recognition-card {
    background-color: var(--warm-gray);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.recognition-card:hover {
    box-shadow: var(--shadow-lg);
}

.recognition-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.recognition-detail {
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.75;
}

/* News Section */
.news-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.news-card:hover {
    box-shadow: var(--shadow-xl);
}

.news-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.star {
    width: 1rem;
    height: 1rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-card {
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    stroke-width: 2;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.contact-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-address {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-style: normal;
    line-height: 1.75;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Social Section */
.social-section {
    margin-top: 3rem;
    text-align: center;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.social-facebook {
    background-color: #1877f2;
}

.social-facebook:hover {
    background-color: #145dbf;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-linkedin {
    background-color: #0077b5;
}

.social-linkedin:hover {
    background-color: #005885;
}

.social-youtube {
    background-color: #ff0000;
}

.social-youtube:hover {
    background-color: #cc0000;
}

.social-description {
    color: var(--gray-600);
}

/* CTA Banner */
.cta-banner {
    margin-top: 3rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-slogan {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    color: var(--gray-600);
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: var(--primary);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-600);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.footer-icon {
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

@media (min-width: 640px) {
    .footer-legal-links {
        flex-direction: row;
        justify-content: center;
    }
}

.separator {
    display: none;
}

@media (min-width: 640px) {
    .separator {
        display: inline;
    }
}
