 
        @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            color: #333;
        }
        
        :root {
            /* Professional Christian Ministry Color Palette */
            --primary-navy: #0d2b5c;        /* Deep navy for trust & authority */
            --secondary-blue: #1a4580;      /* Medium blue for harmony */
            --accent-gold: #c9a86a;         /* Warm gold for divinity & wisdom */
            --light-gold: #e8d8b8;          /* Light gold accents */
            --cream-white: #f8f5f0;         /* Warm cream background */
            --dark-bg: #0a1931;             /* Dark navy for footer */
            --white: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #666;
        }

        /* Header Styles */
        .wp-header {
            background: var(--primary-navy);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(13, 43, 92, 0.1);
            padding: 0 20px;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: auto;
            border-radius: 8px;
            border: 2px solid var(--accent-gold);
        }

        .logo-text {
            color: var(--white);
            font-family: 'Merriweather', serif;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-text span {
            color: var(--accent-gold);
            display: block;
            font-size: 0.9rem;
            font-weight: 400;
            font-style: italic;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .main-nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .main-nav a svg {
            width: 16px;
            height: 16px;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .main-nav a:hover {
            color: var(--accent-gold);
        }

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }

        /* Header Responsive */
        @media (max-width: 992px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary-navy);
                transition: left 0.3s ease;
                padding: 40px 20px;
                overflow-y: auto;
            }
            
            .main-nav.active {
                left: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                align-items: stretch;
            }
            
            .main-nav li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .main-nav a {
                font-size: 1.1rem;
                padding: 20px 0;
                display: flex;
                align-items: center;
                gap: 15px;
            }
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            display: flex;
            align-items: center;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, var(--primary-navy) 0%, transparent 100%);
            z-index: 1;
        }
        
        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: grayscale(10%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 40px;
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        .hero-text {
            max-width: 700px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(201, 168, 106, 0.3);
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .hero-badge span {
            color: var(--accent-gold);
            font-size: 0.9rem;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .hero-content h1 {
            font-family: 'Merriweather', serif;
            font-size: 3.8rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content h1 span {
            color: var(--accent-gold);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Main Content Sections */
        .main-content {
            background: var(--cream-white);
        }
        
        .section {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-family: 'Merriweather', serif;
            font-size: 2.5rem;
            color: var(--primary-navy);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-gold);
            animation: expandWidth 1s ease-out 0.5s both;
        }
        
        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.6;
        }
        
        @keyframes expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        
        .about-text h3 {
            font-family: 'Merriweather', serif;
            font-size: 2rem;
            color: var(--primary-navy);
            margin-bottom: 20px;
        }
        
        .about-text p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Ministries Section */
        .ministries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ministry-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(13, 43, 92, 0.08);
            height: 100%;
            border: 1px solid rgba(201, 168, 106, 0.1);
        }
        
        .ministry-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(13, 43, 92, 0.15);
            border-color: var(--accent-gold);
        }
        
        .ministry-card .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-navy), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            transition: all 0.4s ease;
        }
        
        .ministry-card:hover .card-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
        }
        
        .ministry-card h3 {
            color: var(--primary-navy);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-family: 'Merriweather', serif;
        }
        
        .ministry-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Books Section */
        .books-section {
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-navy) 100%);
            color: var(--white);
        }
        
        .books-section .section-title h2 {
            color: var(--white);
        }
        
        .books-section .section-title p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .book-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .book-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .book-image {
            width: 180px;
            height: 240px;
            margin: 0 auto 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .book-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .book-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--accent-gold);
        }
        
        .book-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        /* Messages Section */
        .messages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .message-card {
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(13, 43, 92, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(201, 168, 106, 0.1);
        }
        
        .message-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(13, 43, 92, 0.15);
        }
        
        .message-icon {
            width: 60px;
            height: 60px;
            background: var(--light-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-navy);
        }
        
        .message-card h3 {
            color: var(--primary-navy);
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-family: 'Merriweather', serif;
        }
        
        .message-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Events Section */
        .events-section {
            background: var(--white);
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .event-card {
            background: var(--cream-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(13, 43, 92, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(201, 168, 106, 0.1);
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(13, 43, 92, 0.15);
        }
        
        .event-date {
            background: var(--primary-navy);
            color: var(--white);
            padding: 15px;
            text-align: center;
        }
        
        .event-date .month {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold);
        }
        
        .event-content {
            padding: 25px;
        }
        
        .event-content h3 {
            color: var(--primary-navy);
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-family: 'Merriweather', serif;
        }
        
        .event-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 15px 0;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
            color: var(--white);
        }
        
        .contact-section .section-title h2 {
            color: var(--white);
        }
        
        .contact-section .section-title p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-item svg {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .contact-item h4 {
            color: var(--accent-gold);
            margin-bottom: 5px;
        }
        
        .contact-item p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            color: var(--white);
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.15);
        }
        
        /* Buttons */
        .btn {
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--accent-gold);
            color: var(--primary-navy);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary-navy);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover,
        .btn-secondary:hover,
        .btn-outline:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary:hover {
            background: var(--light-gold);
        }
        
        .btn-secondary:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .btn-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-navy);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background: var(--cream-white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(201, 168, 106, 0.1);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-content {
            color: var(--text-dark);
            line-height: 1.7;
            position: relative;
            padding-left: 20px;
            font-style: italic;
            margin-bottom: 25px;
        }
        
        .testimonial-content::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 50px;
            font-family: 'Merriweather', serif;
            color: var(--accent-gold);
            opacity: 0.3;
            line-height: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-gold);
        }
        
        .author-info h4 {
            color: var(--primary-navy);
            margin: 0 0 5px 0;
            font-size: 1.1rem;
        }
        
        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Partnership Section */
        .partnership-section {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
            color: var(--white);
        }
        
        .account-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .account-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .account-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .account-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-gold);
        }
        
        .bank-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }
        
        .account-number {
            font-family: 'Courier New', monospace;
            background: rgba(0, 0, 0, 0.2);
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            letter-spacing: 1px;
            margin: 10px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .account-number:hover {
            background: rgba(0, 0, 0, 0.3);
        }
        
        /* Scroll-to-top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: var(--primary-navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: none;
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            background: var(--light-gold);
        }
        
        /* Footer Styles */
        .wp-footer {
            background: var(--dark-bg);
            color: var(--white);
            padding: 80px 0 30px;
        }

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

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

        .footer-logo {
            font-family: 'Merriweather', serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-heading {
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-gold);
        }

        .footer-links ul {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .footer-contact p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
            color: var(--primary-navy);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-background {
                display: none;
            }
            
            .hero-content {
                padding: 80px 20px;
                text-align: center;
                justify-content: center;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section {
                padding: 80px 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                margin-top: 60px;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
            
            .account-grid,
            .books-grid,
            .ministries-grid,
            .messages-grid,
            .events-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
    