* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header Styles */
.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    border-radius: 50%;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.primary-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(30, 64, 175, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary,
.btn-cta {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-paragraph {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-heading-center {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon {
    font-size: 36px;
    color: white;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 15px;
    color: var(--text-light);
}

/* Latest Posts Section */
.latest-posts-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.post-preview {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-preview:hover {
    transform: translateY(-5px);
}

.post-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.post-title a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--secondary-color);
}

.view-all-posts {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-heading {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 18px;
}

.btn-cta:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Facts Section */
.facts-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fact-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.fact-text {
    font-size: 15px;
    color: var(--text-light);
}

/* Footer Styles */
.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-description,
.footer-reg {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept-all:hover {
    background-color: var(--secondary-color);
}

.cookie-btn.customize {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.cookie-btn.customize:hover {
    background-color: var(--border-color);
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
    background-color: var(--bg-light);
}

/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

/* Blog Content Section */
.blog-content-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.blog-post-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-date,
.post-category {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-heading {
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-post-heading a {
    text-decoration: none;
    color: var(--text-dark);
}

.blog-post-heading a:hover {
    color: var(--primary-color);
}

.blog-post-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-read-more:hover {
    color: var(--secondary-color);
}

/* About Page Styles */
.about-intro-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-paragraph {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon {
    font-size: 36px;
    color: var(--primary-color);
}

.value-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-description {
    font-size: 14px;
    color: var(--text-light);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.team-intro-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-card h3 {
    font-size: 22px;
    margin: 20px 0 5px;
    padding: 0 20px;
}

.team-position {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 20px 25px;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -37px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--bg-light);
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-main-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-heading {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-intro-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-circle i {
    color: white;
    font-size: 20px;
}

.contact-detail-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-detail-text p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-detail-text a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-detail-text a:hover {
    color: var(--primary-color);
}

.contact-image-wrapper {
    margin-top: 30px;
}

.contact-image-wrapper img {
    width: 100%;
    border-radius: 10px;
}

/* Contact Form */
.contact-form-heading {
    font-size: 32px;
    margin-bottom: 30px;
}

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

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

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-label a {
    color: var(--primary-color);
}

.btn-submit {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.success-modal.show {
    display: flex;
}

.modal-content-wrapper {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
}

.modal-icon {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-content-wrapper h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.modal-content-wrapper p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-close-modal {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

/* Post Single Page */
.post-single {
    background-color: var(--bg-white);
}

.post-hero {
    position: relative;
    height: 500px;
}

.post-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 60px 0 40px;
}

.post-meta-info {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 14px;
}

.post-meta-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.post-content-wrapper {
    padding: 60px 0;
}

.post-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-main-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-intro {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.post-main-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.post-main-content p {
    margin-bottom: 20px;
}

.post-main-content strong {
    font-weight: 700;
    color: var(--text-dark);
}

.post-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tag-label {
    font-weight: 600;
}

.post-tag {
    padding: 6px 15px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.post-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.nav-prev,
.nav-next {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-prev:hover,
.nav-next:hover {
    color: var(--secondary-color);
}

/* Post Sidebar */
.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.related-posts-list,
.categories-list {
    list-style: none;
}

.related-posts-list li,
.categories-list li {
    margin-bottom: 15px;
}

.related-posts-list a,
.categories-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-posts-list a:hover,
.categories-list a:hover {
    color: var(--primary-color);
}

.categories-list a {
    display: flex;
    justify-content: space-between;
}

.categories-list span {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .post-content-grid {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .blog-post-card {
        grid-template-columns: 1fr;
    }
    
    .blog-post-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .primary-navigation .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .intro-grid,
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .post-main-title {
        font-size: 28px;
    }
    
    .section-heading,
    .section-heading-center {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}