        body {
            box-sizing: border-box;
            font-family: 'Times New Roman', Times, serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #FDFDFD 0%, #F5F7FA 100%);
            color: #666666;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            backdrop-filter: blur(3px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            font-family:'Times New Roman', Times, serif;
            font-weight: 900;
            font-size: 1.5rem;
            font-size: 50px;
            color: #7ACFA6;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            background: linear-gradient(135deg, #7ACFA6, #F9C89F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: #666666;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            color: #7ACFA6;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #7ACFA6;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-login, .btn-signup {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-login {
            background: transparent;
            color: #7ACFA6;
            border: 2px solid #7ACFA6;
        }

        .btn-signup {
            background: linear-gradient(135deg, #7ACFA6, #5AB88A);
            color: white;
        }

        .btn-login:hover, .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(122, 207, 166, 0.3);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #7ACFA6;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
        }

        /* Page Sections */
        .page-section {
            display: none;
            min-height: calc(100vh - 80px);
            padding: 2rem 0;
        }

        .page-section.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            padding: 4rem 0;
            background: linear-gradient(135deg, #FDFDFD 0%, #F5F7FA 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            min-height: 70vh;
        }

        .hero-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #666;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #7ACFA6, #5AB88A);
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: #F9C89F;
            border: 2px solid #F9C89F;
        }

        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(122, 207, 166, 0.3);
        }

        .hero-image {
            text-align: center;
            position: relative;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Floating Icons */
        .floating-icon {
            position: absolute;
            font-size: 2rem;
            animation: float 3s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 1s;
        }

        .floating-icon:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Typewriter Effect */
        .typewriter {
            overflow: hidden;
            border-right: 3px solid #7ACFA6;
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #7ACFA6; }
        }

        /* Loan Options Section */
        .loan-options {
            padding: 4rem 0;
            background: #FAFAFA;
        }

        .section-title {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 3rem;
        }

        .loan-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .loan-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .loan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #7ACFA6, #F9C89F);
        }

        .loan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(122, 207, 166, 0.2);
        }

        .loan-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7ACFA6, #F9C89F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: white;
        }

        .card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1rem;
        }

        .service-card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1rem;
        }

        .loan-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .loan-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 4rem 0;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #7ACFA6, #F9C89F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            font-weight: bold;
            color: white;
        }

        .step h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 1rem;
        }

        /* Success Stories Section */
        .success-stories {
            padding: 4rem 0;
            background: #FAFAFA;
        }

        .testimonial-carousel {
            position: relative;
            max-width: 800px;
            margin: 2rem auto;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            display: none;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #7ACFA6, #F9C89F);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            object-fit: cover;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-quote {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #666;
        }

        .testimonial-name {
            font-weight: 600;
            color: #333;
        }

        .carousel-controls {
            text-align: center;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #7ACFA6;
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
        }

        .blog-card-content {
            padding: 1.5rem;
        }

        .blog-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .blog-card p {
            color: #666;
            margin-bottom: 1rem;
        }

        .read-more {
            color: #7ACFA6;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: #5AB88A;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #7ACFA6, #F9C89F);
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-primary, .btn-cta-secondary {
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta-primary {
            background: white;
            color: #7ACFA6;
        }

        .btn-cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-cta-primary:hover, .btn-cta-secondary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #7ACFA6;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .footer-section ul li a:hover {
            color: #7ACFA6;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 25px;
            background: #444;
            color: white;
        }

        .newsletter-input::placeholder {
            color: #ccc;
        }

        .newsletter-btn {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #7ACFA6, #5AB88A);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(122, 207, 166, 0.3);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #7ACFA6;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #ccc;
        }

        /* Contact Page */
        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #eee;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #7ACFA6;
            box-shadow: 0 0 0 3px rgba(122, 207, 166, 0.1);
        }

        /* Auth Pages */
        .auth-container {
            max-width: 400px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .auth-title {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            color: #333;
            margin-bottom: 2rem;
        }

        .auth-switch {
            text-align: center;
            margin-top: 1rem;
        }

        .auth-switch a {
            color: #7ACFA6;
            text-decoration: none;
            font-weight: 600;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #7ACFA6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

        /* Animation Classes */
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-in-left {
            animation: slideInLeft 0.6s ease forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-in-right {
            animation: slideInRight 0.6s ease forwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* User Dashboard */
        .user-info {
            background: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            margin-right: 1rem;
            display: none;
            align-items: center;
            gap: 1rem;
        }

        .user-info.show {
            display: flex;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #7ACFA6, #F9C89F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .logout-btn {
            background: #ff6b6b;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            background: #ff5252;
            transform: translateY(-2px);
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(135deg, #7ACFA6, #5AB88A);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            margin: 1rem 0;
            text-align: center;
            display: none;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .success-message.show {
            display: block;
        }
    You said:
  <div class="hero">
                <div class="floating-icon">💰</div>
                <div class="floating-icon">📊</div>
                <div class="floating-icon">🏠</div>
                <div class="container">
                    <div class="hero-container">
                        <div class="hero-content slide-in-left">
                            <h1 class="typewriter">Your Path to Smart Loans Starts Here</h1>
                            <p>Quick, Transparent, and Easy-to-Use Loan Solutions tailored for your financial needs. Get approved in minutes, not days.</p>
                            <div class="hero-buttons">
                                <a href="#" class="btn-primary" onclick="showPage('loans')">Apply Now</a>
                                <a href="#" class="btn-secondary" onclick="showLearnMore()">Learn More</a>
                            </div>
                        </div>
                        <div class="hero-image slide-in-right">
                            <img src="https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Happy family with their new home" onerror="this.src=''; this.alt='Image failed to load'; this.style.display='none';">
                        </div>
                    </div>
                </div>
            </div>MAke sliding show 
ChatGPT said:

Got it! You want your hero section to have a sliding show / carousel effect, so the content (images and possibly text) slides automatically or via navigation. I can rewrite your code to include a simple sliding hero with multiple slides, fully responsive and using CSS + minimal JS. Here's a working example:

<!-- Hero Section with Sliding Show -->
<div class="hero-slider">
  <div class="slides">
    <!-- Slide 1 -->
    <div class="slide active">
      <div class="floating-icon">💰</div>
      <div class="hero-content">
        <h1>Your Path to Smart Loans Starts Here</h1>
        <p>Quick, Transparent, and Easy-to-Use Loan Solutions tailored for your financial needs. Get approved in minutes, not days.</p>
        <div class="hero-buttons">
          <a href="#" class="btn-primary" onclick="showPage('loans')">Apply Now</a>
          <a href="#" class="btn-secondary" onclick="showLearnMore()">Learn More</a>
        </div>
      </div>
      <div class="hero-image">
        <img src="https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80" alt="Happy family with their new home">
      </div>
    </div>

    <!-- Slide 2 -->
    <div class="slide">
      <div class="floating-icon">📊</div>
      <div class="hero-content">
        <h1>Manage Your Finances Easily</h1>
        <p>Get insights, track spending, and make smarter decisions with our easy-to-use tools.</p>
        <div class="hero-buttons">
          <a href="#" class="btn-primary" onclick="showPage('dashboard')">Explore Dashboard</a>
          <a href="#" class="btn-secondary" onclick="showLearnMore()">Learn More</a>
        </div>
      </div>
      <div class="hero-image">
        <img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80" alt="Financial planning">
      </div>
    </div>

    <!-- Slide 3 -->
    <div class="slide">
      <div class="floating-icon">🏠</div>
      <div class="hero-content">
        <h1>Achieve Your Dream Home</h1>
        <p>Flexible home loans to make your dream house a reality. Simple process, fast approval.</p>
        <div class="hero-buttons">
          <a href="#" class="btn-primary" onclick="showPage('home-loans')">Apply Now</a>
          <a href="#" class="btn-secondary" onclick="showLearnMore()">Learn More</a>
        </div>
      </div>
      <div class="hero-image">
        <img src="https://images.unsplash.com/photo-1572120360610-d971b9c7c5f0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80" alt="Dream home">
      </div>
    </div>
  </div>

  <!-- Navigation Buttons -->
  <button class="prev" onclick="changeSlide(-1)">&#10094;</button>
  <button class="next" onclick="changeSlide(1)">&#10095;</button>
</div>

<style>
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 600px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  top: 20px;
  left: 20px;
}

.hero-content {
  max-width: 500px;
}

.hero-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 15px;
}

.hero-buttons {
  margin-top: 20px;
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  margin-right: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: #4CAF50;
  color: white;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #4CAF50;
  color: #4CAF50;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.3);
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }