:root {
    /* Main colors */
    --primary: #2d3436;
    --accent1: #ec268f;
    --accent2: #4ecdc4;
    --accent3: #fdcb6e;
    --accent4: #a29bfe;
    --light: #ffffff;
    --dark: #1e272e;
    --gray: #dfe6e9;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Gradients */
    --gradient1: linear-gradient(45deg, #ec268f, #f829ba);
    --gradient2: linear-gradient(45deg, #4ecdc4, #56e2d1);
    --gradient3: linear-gradient(45deg, #a29bfe, #6c5ce7);
    --rainbow-gradient: linear-gradient(45deg, #ec268f, #f829ba, #4ecdc4, #a29bfe, #ff6b6b);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'century-gothic', 'Century Gothic', 'Futura', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--primary);
    overflow-x: hidden;
}

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

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.splash-logo {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
}

.splash-logo img {
    width: 150px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
    animation: pulse 2s infinite alternate;
}

.splash-logo:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--rainbow-gradient);
    z-index: 1;
    border-radius: 18px;
    background-size: 400%;
    animation: glowing 8s linear infinite;
    opacity: 0.9;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

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

/* Hide splash screen after loading */
.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Header styling - centered nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: center; /* Center the nav */
    align-items: center;
}

header.scrolled {
    background-color: rgba(30, 39, 46, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center; /* Center nav items */
}

.nav-links li {
    margin: 0 15px; /* Equal margin on both sides */
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent1);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.btn-contact {
    background-color: var(--accent1);
    padding: 8px 15px;
    border-radius: 30px;
}

.btn-contact:hover {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--accent1);
}

.menu-toggle {
    display: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

/* Mobile menu styles - Add or update these */
.menu-toggle {
    display: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent1);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    color: var(--light);
    max-width: 700px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.accent-text {
    color: var(--accent1);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient1);
    color: var(--light);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--accent1);
    color: var(--light);
}

.btn-outline:hover {
    background-color: var(--accent1);
    transform: translateY(-3px);
}

/* Enhanced Service Cards Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #FF3366, #CC33FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(204, 51, 255, 0.1));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .icon-container {
    background: linear-gradient(135deg, #FF3366, #CC33FF);
    transform: rotate(10deg) scale(1.1);
}

.service-card .icon-container i {
    font-size: 32px;
    color: #FF3366;
    transition: all 0.4s ease;
}

.service-card:hover .icon-container i {
    color: white;
}

.service-card h3 {
    margin: 20px 0 15px;
    font-size: 20px;
    font-weight: 700;
    color: #222222;
}

.service-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Fix missing icons issue */
.service-card .icon-container i.fa-tshirt,
.service-card .icon-container i.fa-gift,
.service-card .icon-container i.fa-hard-hat,
.service-card .icon-container i.fa-flag,
.service-card .icon-container i.fa-sign,
.service-card .icon-container i.fa-car {
    display: inline-block !important;
}

/* Enhanced Capabilities Section Styling */
.services-summary {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
    position: relative;
}

.services-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.png');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 1;
}

.services-summary .container {
    position: relative;
    z-index: 2;
}

.services-summary h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services-summary h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF3366, #CC33FF);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
}

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

.summary-column {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.summary-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.summary-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.03), rgba(204, 51, 255, 0.03));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.summary-column:hover::before {
    opacity: 1;
}

.summary-column h3 {
    color: #222222;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
    font-weight: 600;
}

.summary-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF3366, #CC33FF);
    border-radius: 2px;
}

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

.summary-column ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #666666;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-column ul li:last-child {
    border-bottom: none;
}

.summary-column ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF3366;
    font-weight: bold;
}

.summary-column ul li:hover {
    color: #222222;
    transform: translateX(5px);
}

.summary-cta {
    text-align: center;
    margin-top: 60px;
}

.summary-cta .btn {
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-columns {
        grid-template-columns: 1fr;
    }
    
    .services-summary h2 {
        font-size: 28px;
    }
    
    .summary-column {
        padding: 25px;
    }
}

.btn-small {
    padding: 8px 15px;
    border-radius: 30px;
    background: var(--accent1);
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--light);
    color: var (--accent1);
}

/* Floating elements animation - Updated to match splash screen */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(10px);
    animation: float 20s linear infinite;
}

.element:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--rainbow-gradient);
    z-index: 1;
    border-radius: 50%;
    background-size: 400%;
    animation: glowing 8s linear infinite;
}

.e1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-duration: 15s;
}

.e2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.e3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    animation-duration: 20s;
    animation-delay: 5s;
}

.e4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 8s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

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

.services h2, .work h2, .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.5px;
}

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

.service-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--rainbow-gradient);
    background-size: 400%;
    animation: gradient-shift 8s ease infinite;
}

.icon-container {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    color: var(--light);
    overflow: hidden;
}

.service-card:nth-child(1) .icon-container {
    background: var(--gradient1);
}

.service-card:nth-child(2) .icon-container {
    background: var(--gradient2);
}

.service-card:nth-child(3) .icon-container {
    background: var(--gradient3);
}

.service-card h3 {
    margin: 15px 0;
    font-size: 1.3rem;
    letter-spacing: 0.2px;
}

.service-card p {
    color: var(--primary);
    opacity: 0.8;
    line-height: 1.6;
}

/* Work Section */
.work {
    padding: 100px 0;
    background-color: var(--gray);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.work-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-overlay h3 {
    color: var(--light);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.contact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--rainbow-gradient);
    background-size: 400%;
    animation: gradient-shift 8s ease infinite;
}

.contact p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: var(--transition);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-links a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rainbow-gradient);
    background-size: 400%;
    opacity: 0.3;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links a:hover:before {
    opacity: 1;
    animation: glowing 8s linear infinite;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-grid, .work-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    header .container {
        display: flex;
        justify-content: center;
        position: relative; /* For absolute positioning of menu toggle */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--dark);
        height: 100vh;
        width: 250px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Add overlay when mobile menu is active */
    body.menu-active::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
}

/* Add this new CSS for the big logo */
.big-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.big-logo img {
    width: 300px; /* Much larger logo */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    animation: pulseBig 3s infinite alternate;
    position: relative;
    z-index: 2;
}

/* Logo glow effect */
.big-logo:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    background: var(--rainbow-gradient);
    border-radius: 50%;
    z-index: 1;
    background-size: 400%;
    animation: glowing 8s linear infinite;
    opacity: 0.6;
    filter: blur(15px);
}

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

/* Update hero content to center everything */
.hero {
    height: 100vh;
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 60px; /* Add padding to account for fixed header */
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    color: var(--light);
    max-width: 700px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    width: 100%;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    letter-spacing: 0.3px;
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

/* Make the buttons more prominent */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

/* Add more spacing between hero elements */
.big-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Logo animation for initial load (replacing splash screen) */
.big-logo {
    opacity: 0;
    transform: translateY(30px);
}

.big-logo.animate {
    animation: logoAppear 1s forwards 0.3s;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.8s;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001; /* Ensure it's above the overlay */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000; /* Higher than the overlay */
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    body.menu-active {
        overflow: hidden;
    }
    
    body.menu-active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999; /* Lower than the nav but still high */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 250px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}