/* ============================================
   HiCreativo Studio - Custom Styles
   ============================================ */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #2D1B69;
    --accent-yellow: #FFD700;
    --accent-orange: #FF8C00;
    --warm-yellow: #FFA500;
    --dark-orange: #FF4500;
    --gray-color: #F5F5F5;
    --white-color: #ffffff;
    --black-color: #1a1a1a;
    --font-main: 'Hind', sans-serif;
    --font-headers: 'Montserrat', serif;
    --font-subheaders: 'Architects Daughter', cursive;
}

/* ============================================
   Global Styles
   ============================================ */

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

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary-color);
    overflow-x: hidden;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

/* Efecto de fondo general con rayos sutiles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 20% 80%, 
            rgba(255, 215, 0, 0.03) 0%, 
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%, 
            rgba(255, 140, 0, 0.03) 0%, 
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 40%, 
            rgba(255, 165, 0, 0.02) 0%, 
            transparent 50%
        );
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

/* ============================================
   Page Loader
   ============================================ */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner .spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1.0s;
}

@keyframes bounce {
    0%, 100% { transform: scale(0); }
    50% { transform: scale(1); }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(40, 40, 52, 0.95);
    border: none;
    border-radius: 0;
    margin: 0;
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-transparent {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(40, 40, 52, 0.98);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white-color) !important;
    font-size: 28px;
    font-weight: 900;
    padding: 10px 15px;
}

.logo-text {
    font-family: var(--font-headers);
    font-weight: 900;
    color: var(--white-color);
}

.logo-subtext {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-top: -5px;
}

.navbar-nav > li > a {
    color: var(--white-color) !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 15px;
    position: relative;
}

.navbar-nav > li > a span {
    position: relative;
    z-index: 1;
}

.navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav > li > a:hover::after,
.navbar-nav > li.active > a::after {
    width: 30px;
}

.navbar-toggle {
    border: 2px solid var(--white-color);
    border-radius: 0;
}

.navbar-toggle .icon-bar {
    background-color: var(--white-color);
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: 
        radial-gradient(circle at center, var(--accent-yellow) 0%, var(--warm-yellow) 30%, var(--accent-orange) 60%, var(--dark-orange) 100%),
        linear-gradient(45deg, var(--accent-yellow) 0%, var(--warm-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Efecto de rayos de luz (sunburst) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-conic-gradient(
            from 0deg at center,
            transparent 0deg,
            rgba(255, 215, 0, 0.3) 5deg,
            transparent 10deg,
            rgba(255, 140, 0, 0.2) 15deg,
            transparent 20deg,
            rgba(255, 165, 0, 0.4) 25deg,
            transparent 30deg,
            rgba(255, 69, 0, 0.2) 35deg,
            transparent 40deg
        );
    opacity: 0.6;
    animation: sunburst-rotate 20s linear infinite;
}

@keyframes sunburst-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 30% 70%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%
        );
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--white-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 28px;
    color: var(--secondary-color);
    font-family: var(--font-subheaders);
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero-buttons {
    margin-top: 40px;
}

.animate-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.2s; }
.animate-in:nth-child(2) { animation-delay: 0.4s; }
.animate-in:nth-child(3) { animation-delay: 0.6s; }
.animate-in:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    color: var(--white-color);
    text-align: center;
    line-height: 36px;
    font-size: 24px;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(45, 27, 105, 0.3);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(45, 27, 105, 0.2);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 6px 20px rgba(45, 27, 105, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 16px;
}

/* ============================================
   Sections
   ============================================ */

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header-light .section-title {
    color: var(--white-color);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--primary-color));
    margin: 0 auto 30px;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.section-header-light .section-description {
    color: rgba(255, 255, 255, 0.8);
}

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

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

/* ============================================
   Features
   ============================================ */

.features-row {
    margin-top: 60px;
}

.feature-box {
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.feature-icon i {
    font-size: 48px;
    color: var(--white-color);
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, var(--warm-yellow), var(--dark-orange));
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   Services
   ============================================ */

.services-grid {
    margin-top: 60px;
}

.service-item {
    background: var(--white-color);
    padding: 50px 30px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border: 3px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--accent-yellow), var(--primary-color)) border-box;
}

.service-icon i {
    font-size: 42px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.service-item:hover .service-icon i {
    -webkit-text-fill-color: white;
    background: none;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   Portfolio
   ============================================ */

.portfolio-grid {
    margin-top: 60px;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 107, 53, 0.9));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-box:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-box:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    text-align: center;
    color: var(--white-color);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-box:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white-color);
}

.portfolio-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-play {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    color: var(--white-color);
    text-align: center;
    line-height: 56px;
    font-size: 24px;
    transition: all 0.3s ease;
}

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

/* ============================================
   Team
   ============================================ */

.team-grid {
    margin-top: 60px;
}

.team-member {
    margin-bottom: 30px;
    background: var(--white-color);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 107, 53, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.team-member:hover .team-overlay {
    height: 100%;
}

.team-social {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.team-member:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    color: var(--white-color);
    text-align: center;
    line-height: 36px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 40px;
    text-align: center;
}

.testimonial-content {
    background: var(--white-color);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-role {
    font-size: 14px;
    color: var(--primary-color);
}

/* ============================================
   Contact
   ============================================ */

.contact-form {
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 39, 81, 0.1);
}

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

.contact-info-row {
    margin-top: 80px;
}

.contact-info-item {
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.contact-icon i {
    font-size: 36px;
    color: var(--white-color);
}

.contact-info-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--warm-yellow), var(--dark-orange));
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.contact-info-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-info-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-widgets {
    margin-bottom: 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white-color);
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    border-color: transparent;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 5px;
}

.footer-schedule {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-schedule li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-schedule li span {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    display: inline-block;
    min-width: 150px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   Go to Top Button
   ============================================ */

.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-color));
    color: var(--white-color);
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.go-top.show {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    background: linear-gradient(135deg, var(--warm-yellow), var(--dark-orange));
    color: var(--white-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-nav {
        background: rgba(40, 40, 52, 0.98);
        padding: 20px;
    }
    
    .navbar-nav > li > a {
        padding: 10px 15px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 15px 40px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .feature-box,
    .service-item,
    .team-member {
        margin-bottom: 20px;
    }
}

