@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap);

        :root {
        --primary-blue: #004AAD;
        --primary-pink: #CD208B;
        --yellow: #FFD700;
        --text-dark: #000000;
        --text-light: #FFFFFF;
        --text-gray: #666;

        /* ===== FONT SIZES (LARGE SCREENS) ===== */
        --font-h1-large: 48px;   
        --font-h2-large: 36px;   
        --font-h3-large: 28px;   
        --font-p-large: 18px;    
        --font-small-large: 15px; 

        /* ===== FONT SIZES (SMALL SCREENS) ===== */
        --font-h1-small: 32px;    
        --font-h2-small: 24px;   
        --font-h3-small: 20px;    
        --font-p-small: 16px;  
        --font-small-small: 14px; 

        /* ==== NAVBAR ==== */
        --font-nav-link-large: 16px;
        --font-nav-link-small: 15px;
        --font-nav-button: 17px;
        --logo-image: 48px;
        --logo-font-size: 30px;

        /* nav buttons */
        --btn-nav-height: 45px;
        --btn-nav-min-width: 120px;
        --btn-nav-font-size: 15px;

        /* ==== FOOTER ==== */
        --font-footer-title-large: 18px;
        --font-footer-title-small: 16px;
        --font-footer-link-large: 16px;
        --font-footer-link-small: 14px;
        }

        html {
            font-size: 1rem;
            scrollbar-gutter: stable;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', system-ui, -apple-system, sans-serif;
            transition: all 0.3s ease-in-out;
        }
        body {
            font-family: 'Poppins', system-ui, -apple-system, sans-serif;
        }
        #applyNowModal.modal {
            display: none;
            position: fixed;
            z-index: 1000;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.4);
            justify-content: center;
            align-items: center;
        }
        #applyNowModal.is-open { display: flex; }

        #applyNowModal .modal-content {
            background-color: #fff; /* white card */
            padding: 2rem;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
            text-align: center;
            border: 2px solid var(--primary-blue); /* thin border like screenshot */
        }

        #applyNowModal .modal-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        #applyNowModal .modal-content h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }

        #applyNowModal .modal-content p {
            font-size: 16px;
            margin: 0 0 1.5rem;
            color: #333;
        }

        #applyNowModal .modal-buttons {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            padding: 0 2rem;
        }
        #applyNowModal .modal-buttons .btn {
            background-color: #d63384; /* magenta/pink like screenshot */
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            min-width: 160px;
            max-width: 80%;
            text-decoration: none;
            cursor: pointer;
            transition: opacity 0.2s ease;
        }
        #applyNowModal .modal-buttons .btn:hover {
            opacity: 0.9;
        }

        #applyNowModal .close-btn {
            position: absolute;
            top: .75rem;
            right: .75rem;
            background: transparent;
            border: none;
            font-size: 1.25rem;
            color: var(--primary-blue);
            cursor: pointer;
        }
        
        /* Button Styles */
        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            position: relative;
        }
        .btn {
            padding: 0 1.5rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
            height: 50px;
        }
        .btn-primary {
            background: var(--primary-pink);
            border: 2px solid var(--primary-pink);
            color: var(--text-light);
        }
        .btn-outline {
            background: white;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }
        .btn-gigs {
            background: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            color: var(--text-light);
        }
        .btn-primary:hover {
            background: white;
            border: 2px solid var(--primary-pink);
            color: var(--primary-pink);
            text-decoration: none;
        }
        .btn-outline:hover {
            background: var(--primary-blue);
            color: var(--text-light);
            text-decoration: none;
        }
        .btn-gigs:hover {
            background: white;
            color: var(--primary-blue);
        }

        .btn-crm {
          background: var(--primary-blue);
          border: 2px solid var(--primary-blue);
          color: var(--text-light);
        }

        .btn-crm:hover {
          background: white;
          color: var(--primary-blue);
          border-color: var(--primary-blue);
          text-decoration: none;
        }
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: var(--text-light);
            padding: 2rem;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
            text-align: center;
        }
        .modal-content h2 {
            font-size: 24px;
            color: var(--primary-blue);
        }
        .modal-buttons {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            padding: 0 2rem; 
        }
        .modal-buttons .btn {
            width: auto;
            min-width: 160px;
            max-width: 80%;
            margin: 0 auto;
        }
        .social-login-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .social-login-btn img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }
        .close {
            position: absolute;
            right: 1rem;
            top: 0.1rem;
            font-size: 2rem;
            cursor: pointer;
        }
        .role-selection {
            margin: 2rem 0;
        }
        .role-option {
            border: 2px solid var(--primary-blue);
            border-radius: 10px;
            padding: 1rem;
            margin: 1rem 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .role-option:hover {
            background-color: var(--text-light);
        }
        .role-option.selected {
            border-color: var(--primary-pink);
            background-color: var(--text-light);
        }
        .role-option input[type="radio"] {
            margin-right: 0.5rem;
        }
        .login-link {
            text-align: center;
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .login-link a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }
        .login-link a:hover {
            text-decoration: underline;
        }
        .login-modal-content {
            max-width: 400px;
            padding: 2rem;
        }
        .login-container {
            width: 100%;
        }
        .login-container h2 {
            text-align: center;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        .login-container form .btn-primary {
            width: auto;
            position: relative;
            min-width: 120px;
            transition: all 0.3s ease;
        }
        /* Login Button Loading States */
        .login-container form .btn-primary:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }
        .login-spinner {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .login-spinner i {
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .login-text, .login-spinner {
            transition: all 0.3s ease;
        }
        .form-group {
            position: relative;
            margin-bottom: 1rem;
        }
        .form-group i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-gray);
        }
        .form-group input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.5rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .checkbox-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        .forgot-password-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.9rem;
        }
        .forgot-password-link:hover {
            text-decoration: underline;
        }
        .or-separator {
            text-align: center;
            margin: 1rem 0;
            position: relative;
        }
        .or-separator::before,
        .or-separator::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 45%;
            height: 1px;
            background-color: #ddd;
        }
        .or-separator::before {
            left: 0;
        }
        .or-separator::after {
            right: 0;
        }
        .signup-link {
            text-align: center;
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .signup-link a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }
        .signup-link a:hover {
            text-decoration: underline;
        }
        .forgot-password-modal {
            max-width: 400px;
            padding: 2rem;
        }
        .forgot-password-modal h2 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .forgot-password-modal input {
            width: 100%;
            padding: 0.8rem;
            margin: 1rem 0;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .mobile-auth-buttons {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            margin-top: 2rem;
            width: 100%;
            max-width: 250px;
            justify-content: center;
            background-color: white;
            padding: 10px;
        }
        .mobile-auth-buttons .btn {
            flex: 1;
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .mobile-auth-buttons .btn-outline {
            background: white;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        .mobile-auth-buttons .btn-outline:hover {
            background: var(--primary-blue);
            color: white;
        }
        .mobile-auth-buttons .btn-primary {
            background: var(--primary-pink);
            color: white;
            border: 2px solid var(--primary-pink);
        }
        .mobile-auth-buttons .btn-primary:hover {
            background: white;
            color: var(--primary-pink);
        }
        
        /* Container Styles */
        .container {
            max-width: 2000px;
            margin: auto;
            padding: auto;
        }
        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0rem 1rem;
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            height: 5.5rem;
        }
        .navbar-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.7rem;
            color: var(--primary-pink);
            margin-right: 1rem;
        }
        .logo img {
            width: var(--logo-image);
            height: var(--logo-image);
        }
        .logo h1 {
            font-size: var(--logo-font-size);
            margin-left: 0.3rem;
            font-weight: bold;
        }
        .nav-links {
            display: flex;
            gap: 1rem;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: var(--primary-blue);
            text-decoration: none;
            padding: 0.5rem 1rem;
            font-size: var(--font-nav-link-large);
            font-weight: 500;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-pink);
        }
        .navbar-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .search-auth-content {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 0.5rem 1rem;
        }
        .search-type-select {
            display:none;
            position: relative;
        }
        .search-type-button {
            height: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 1rem;
            border: 2px solid var(--primary-blue);
            border-radius: 8px 0 0 8px;
            border-right: none;
            background: white;
            cursor: pointer;
            font-size: 1rem;
            color: var(--primary-blue);
        }
        .search-type-button:hover {
            color: var(--primary-pink);
            border-color: var(--primary-pink);
        }
        .search-type-button:after {
            content: '▼';
            font-size: 1rem;
        }
        .search-type-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 2px solid var(--primary-blue);
            border-radius: 8px;
            margin-top: 0.5rem;
            display: none;
            z-index: 1000;
            width: max-content;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .search-type-dropdown.active {
            display: block;
        }
        .search-type-option {
            padding: 1rem;
            cursor: pointer;
            color: var(--primary-blue);
        }
        .search-type-option:hover {
            color: var(--primary-pink);
        }
        .search-bar {
            height: 50px;
            display: none;
            align-items: center;
            background: white;
            border: 2px solid var(--primary-blue);
            border-radius: 0 8px 8px 0;
            width: 200px;
            margin-right: 1rem;
        }
        .search-bar:hover {
            border-color: var(--primary-pink);
            display:none;
        }
        .search-type-button:hover + .search-bar {
            border-color: var(--primary-pink);
        }
        .search-bar input {
            display:none;
            border: none;
            outline: none;
            padding: 0 1rem;
            width: 100%;
            height: 100%;
            font-size: 1rem;
        }
        .search-bar input:focus {
            outline: none;
        }
        .search-bar .icon {
            display:none;
            color: var(--primary-blue);
            padding: 0 0.5rem;
            font-size: 1rem;  
        }
        .search-bar:hover .icon {
            color: var(--primary-pink);
            display:none;
        }
        /* Section1 Styles */


            .section1 .content {
            flex: 1;
            max-width: 1000px;
            margin-top:-4rem;
            margin-left: -6rem;
            }


            .section1 .image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            }

            .section1 .image img {
            width: 420px;
            height: 280px;
            border-radius: 6px;
            object-fit: cover;
            background: #e6e6e6;
            }
        .highlight-pink {
            color: var(--primary-pink);
            font-weight: bold;
        }
        .highlight-blue {
            color: var(--primary-blue);
            font-weight: bold;
        }
        .section1 .btn {
            height: 60px;      
            font-size: 22px;  
            min-width: 200px;  
            font-weight: 600;   
            margin-bottom: -3rem;
            margin-top: 1rem;
        }
       
        /* Section3 Styles */
        .section3 {
            background: var(--text-light);
            text-align: center;
            padding: 5rem 5%;
            align-items: center;
        }
        .section3 {
            background: var(--text-light);
            color: var(--text-light);
            text-align: center;
            padding: 5rem 5%;
            align-items: center;
        }
        .section3 .content {
            margin: 0 auto;
            padding: 0;
        }
        .section3 .title-container {
            width: 100%;
        }
        .section3 h1 {
            font-size: 50px;
            color: var(--primary-blue);
            text-align: center;
            width: 100%;
            margin-top: 1rem;
        }
        .section3 .subtitle {
            font-size: 40px;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            text-align: center;
            width: 100%;
            padding: 0 3rem;
            line-height: 2.7rem;
        }
        .section3 .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        .section3 .benefit-card {
            flex: 1;
            min-width: 500px;
            max-width: calc(25% - 2rem);
            margin: 0;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            /* margin-bottom: 1.5rem; */
        }
        .section3 .benefit-card:hover {
            transform: translateY(-5px);
        }
        .section3 .benefit-card i {
            font-size: 75px;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .section3 .benefit-card h3 {
            color: var(--primary-pink);
            margin-bottom: 1rem;
            font-size: 30px;
            line-height: 2.4rem;
        }
        .section3 .benefit-card p {
            color: var(--text-dark);
            line-height: 1.4;
            font-size: 21px;
        }
        /* Section4 Styles */
        .section4 {
            background: var(--primary-pink);
            text-align: center;
            padding: 5rem 5%;
            align-items: center;
        }
        .section4 .content {
            margin: 0 auto;
        }
        .section4 h1 {
            text-align: center;
            font-size: var(--font-h1-large);
            color: var(--text-light);
            margin-bottom: 2.5rem;
            margin-top: -2rem;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(320px, 700px));
            gap: 1.5rem;
            justify-content: center;
        }
        .feature {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .feature h2 {
            color: var(--primary-blue);
            font-size: var(--font-h2-large);
        }
        .feature h3 {
            color: var(--text-dark);
            font-size: var(--font-h3-large);
            margin-bottom: 1.5rem;
            font-weight: normal;
        }
        .feature ul {
            list-style: none;
            padding: 0;
        }
        .feature ul li {
            margin-bottom: 1rem;
            padding-left: 3.5rem;
            position: relative;
            color: var(--text-dark);
            font-size: 21px;
            text-align: left;
        }
        .feature ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            background-color: var(--yellow);
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0rem;
            margin-left: 1rem;
        }
        /* Section5 Styles */
        .section5 {
            background: white;
            color: white;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            min-height: 600px;
            text-align: left;
        }
        .section5 .content {
            padding: 2rem 5%;
        }
        .section5 h1 {
            color: var(--primary-blue);
            text-align: left;
            margin-bottom: 0;
            font-size: 50px;
            position: relative;
            padding-bottom: 0;
            text-transform: uppercase;
            padding-left: 1.2rem;
        }
        .section5 p {
            color: var(--text-dark);
            text-align: left; 
            margin-bottom: 1rem;
            font-size: var(--font-p-large);
            line-height: 1.4;
            padding-right: 2rem; 
        }
        .section5 .points {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.2rem; 
            margin: 1rem 0; 
            position: relative;
        }
        .section5 .points .card {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .section5 .points .card p {
            margin-bottom: -0.3rem;
            font-size: 21px;
            padding-right: 1rem;
            line-height: 2rem;
        }
        .section5 .points .card::before {
            content: '•';
            position: absolute;
            left: 0;
            font-size: 2.5rem;
            color: var(--primary-pink);
            top: 0;
            line-height: 1;
            margin-left: 1.1rem;
            margin-top: -0.3rem;
        }
        .section5 .image-container {
            width: 100%;
            height: 100%;
        }
        .section5 .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .section5 .btn {
            height: 60px;      
            font-size: 25px;  
            min-width: 200px;  
            font-weight: 600;   
            margin-top: 0.5rem;
            margin-left: 2rem;
        }
        .section5 .auth-buttons {
            display: flex;
            justify-content: flex-start;
            margin-top: 0.5rem;
            gap: 1rem;
        }
        /* Section6 Styles */
        .section6 {
            background: white;
            color: white;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            min-height: 600px;
        }
        .section6 .content {
            padding: 2rem 5%;
        }
        .section6 h1 {
            color: var(--primary-pink);
            text-align: left;
            margin-bottom: 0.2rem;
            font-size: 50px;
            position: relative;
            padding-bottom: 0.2rem;
            text-transform: uppercase;
            padding-left: 1.2rem;
        }
        .section5 h2 {
            color: var(--primary-pink);
            text-align: left;
            margin: 0 0 1rem 0;
            font-size: 36px;
            line-height: 1.2;
            padding-left: 1.2rem;
        }
        .section6 h2 {
            color: var(--primary-blue);
            text-align: left;
            margin: 0rem 0 1rem 0;
            font-size: 36px;
            line-height: 1.2;
            padding-left: 1.2rem;
        }
        .section6 p {
            color: var(--text-dark);
            text-align: left; 
            margin-bottom: 1rem;
            font-size: var(--font-p-large);
            line-height: 1.4;
            padding-right: 2rem;
        }
        .section6 .points {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.2rem;
            margin: 1rem 0;
            position: relative;
        }
        .section6 .points .card {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .section6 .points .card p {
            margin-bottom: -0.3rem;
            font-size: 21px;
            padding-right: 1rem;
            line-height: 2rem;
        }
        .section6 .points .card::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0.15rem;       
            font-size: 2.5rem;
            color: var(--primary-blue);
            line-height: 1;
            margin-left: 1.1rem;
            margin-top: -0.3rem;
        }
        .section6 .image-container {
            width: 100%;
            height: 100%;
        }
        .section6 .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
      
        }
        .section6 .btn {
            height: 60px;      
            font-size: 25px;  
            min-width: 200px;  
            font-weight: 600;   
            margin-top: 0.5rem;  
            margin-left: 2rem;
        }
        .section6 .auth-buttons {
            display: flex;
            justify-content: flex-start;
            margin-top: 0.5rem;
            gap: 1rem;
        }

        
        /* Footer Styles */
        footer {
            background: var(--primary-blue);
            padding: 2.5rem 5%;
            align-items: center;
            padding-bottom: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            font-size: var(--font-h3-large);
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }
        .footer-column a {
            font-size: 21px;
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: text-decoration 0.3s ease; 
        }
        .footer-column a:hover {
            text-decoration: underline;
        }
        
        .footer-bottom {
            font-size: 21px;
            color: var(--text-light);
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid white;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10rem;
        }
        .footer-bottom a {
            color: var(--text-light);
            margin: 0 10px;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        .footer-bottom .social-icons img {
            width: 1rem;
            height: 1rem;
        }

        .brand-link{
            margin-left: 5px !important;
        }
        
        .social-icons .bi {
            font-size: 1.5rem; 
            margin-right: 10px;
            border-radius: 50%;
            color: var(--text-light);
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .social-icons .bi:hover {
            transform: scale(1.2);
            color: var(--primary-pink);
        }
        /* Hamburger Menu Styles */
        .hamburger {
            position: relative; /* Change from fixed to relative */
            display: none;
            cursor: pointer;
            padding: 15px;
            background: none;
            border: none;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--primary-blue);
            transition: all 0.3s ease;
        }
        /* Side nav styles */
        .side-nav {
            position: fixed;
            top: 0;
            left: -100%;
            height: 100vh;
            width: 100%;
            background-color: white;
            z-index: 1000;
            transition: left 0.3s ease;
            overflow-y: auto;
        }
        .side-nav.active {
            left: 0;
        }
        .side-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }
        .side-nav-overlay.active {
            display: block;
        }
        .side-nav-content {
            padding: 120px 20px 20px 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }
        .nav-item {
            display: flex;  
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 100%;
            max-width: 300px;
            padding: 20px;
            color: var(--primary-blue);
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: background-color 0.2s ease;
            font-size: 1.2rem;
            text-align: center;
            margin: 10px 0;
            font-weight: 500;
        }
        .nav-item:hover {
            color: var(--primary-pink);
        }
        .side-nav.active + .hamburger span {
            background-color: var(--primary-blue);
        }

        .section-crm {
            background: white;
            padding: 3rem 5%; /* reduced from 6rem */
            position: relative;
        }

        .section-crm .content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-crm h1 {
            font-size: 50px;
            color: var(--primary-blue);
            margin-bottom: 1rem; 
            line-height: 1.2;
            font-weight: 700;
        }

        .section-crm p {
            font-size: 35px;
            color: var(--text-dark);
            margin-bottom: 2rem;  
            line-height: 1.2;
        }

        .section-crm .crm-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;  
            margin-bottom: 2.5rem;  
        }

        .section-crm .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem; /* reduced padding */
            background: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .section-crm .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .section-crm .feature-item i {
            font-size: 1.9rem;
            color: var(--primary-pink);
        }

        .section-crm .feature-item p {
            font-size: 28.8px;
            margin: 0;
        }

        .section-crm .crm-highlight {
            background: var(--primary-pink);
            color: white;
            padding: 2rem; /* reduced */
            border-radius: 12px;
            margin-bottom: 2.5rem; /* reduced */
            box-shadow: 0 6px 15px rgba(0, 74, 173, 0.15);
            text-align: center;
        }

        .section-crm .crm-highlight h2 {
            color: white;
            font-size: 40px;
            margin-bottom: 0.8rem;
        }

        .section-crm .crm-highlight p {
            color: white;
            font-size: 28.8px;
            margin-bottom: 1rem;
        }

        .section-crm .why-giggenius {
            margin-bottom: 2.5rem; /* reduced */
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 12px;
            text-align: center;
        }

        .section-crm .why-giggenius h2 {
            color: var(--primary-blue);
            font-size: var(--font-h2-large);
            margin-bottom: 0.8rem;
        }

        .section-crm .cta-section {
            text-align: center;
            margin-top: 2rem; /* reduced */
        }

        .section-crm .cta-section h2 {
            font-size: 45px;
            color: var(--primary-blue);
            line-height: 65px;
        }

        .section-crm .btn {
            height: 55px;
            font-size: 32px;
            padding: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 600;
            margin-top: 1.2rem;
        }


       /* Add class for body when menu is open */
        body.menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .section1 .content {
            padding-inline: 3%;
            position: relative;
        }

        .highlight-pink { color: var(--primary-pink); font-weight: 700; }
        .highlight-blue { color: var(--primary-blue); font-weight: 700; }



         .section1 .image {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        .section1 .image img {
            width: 100%;
            max-width: 1000px;
            height: auto;
            border-radius: 8px;
            object-fit: contain;
        }


         .container, .section1 { overflow-x: hidden; }
        *,
        *::before,
        *::after { box-sizing: border-box; }




        .footer-bottom .brand-link {
            color: inherit;
            font-weight: inherit;    
            text-decoration: none;
        }


        .footer-bottom .brand-link:hover,
        .footer-bottom .brand-link:focus-visible {
            color: var(--primary-pink) !important;
            outline: none;
            text-decoration: none;
        }


        .footer-bottom .brand-link:visited {
            color: inherit;
        }

        .social-icons .bi-tiktok {
            font-size: 1.5rem;
            margin-right: 10px;
            color: var(--text-light);
            transition: transform 0.3s ease, color 0.3s ease;
        }

            .social-icons .bi-tiktok:hover {
            transform: scale(1.2);
            color: var(--primary-pink);
        }

        .section1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 10%;
            background: #fff;
            overflow: hidden; 
        }

        .section1 .content {
            flex: 1;
            max-width: 1000px;
        }

        .section1 .content h1 {
            font-size: 52px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            line-height: 1.3;
            margin-top: -2rem;
        }

         .section1 .content h2 {
            font-size: 48px;
            color: var(--primary-pink);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 2rem;
            margin-top: 1rem;
            }

        .section1 .content p {
            font-size: 30px;
            color: #333;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .section1 .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .section1 .image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            overflow: visible;
            margin-left: -16rem;
        }

        .section1 .image img {
            width: 700px;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            transform:none;
            margin-top: -4rem;
            margin-right: -9.4rem;
            margin-bottom: -2rem;
        }

        .navbar {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0rem 1.5rem;
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            height: 5.5rem;
        }

        /* Core navbar layout */
        .navbar-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-links {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            white-space: nowrap;
            gap: 1.2rem;
            transition: all 0.3s ease;
        }

        .nav-links a {
            font-size: var(--font-nav-link-large);
            color: var(--primary-blue);
            text-decoration: none;
            padding: 0.4rem 0.8rem;
            font-weight: 500;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-pink);
        }

        /* Right-side buttons */
        .navbar-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }


    
.section2 {
  background: var(--primary-blue);
  color: var(--text-light);
  text-align: center;
  padding: 4rem clamp(3%, 5vw, 6%);
  overflow-x: hidden;
}

.section2 .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  margin-inline: auto;
}

.section2 h1 {
  font-size: 56px;
  line-height: 4rem;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  max-width: 1000px;
  margin-inline: auto;
}

.section2 h1 .highlight {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  padding: 0.25rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  margin-block: 0.4rem;
}

.section2 p {
  color: #f3f3f3;
  font-size: 40px;
  line-height: 1.5;
  margin: 0 0.25rem 1.25rem 0.25rem;
  max-width: 1500px;
}

.section2-balanced-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row on large screens */
  gap: 2.5rem;
  justify-items: center;
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
}

.section2-balanced-cards::-webkit-scrollbar {
  display: none;
}

.section2-balanced-cards .benefit-card {
  flex: 1 1 320px;
  max-width: 400px;
  background: #ffffff;
  color: #222;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section2-balanced-cards .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.section2-balanced-cards .benefit-card i {
  font-size: 75px;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section2-balanced-cards .benefit-card h3 {
  font-size: 33px;
  color: var(--primary-pink);
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 2.3rem;
}

.section2-balanced-cards .benefit-card p {
  font-size: 21px;
  color: #333;
  line-height: 1.45;
}

.section2 .auth-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.section2 .btn {
  font-size: 1.8rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  background-color: var(--primary-pink);
  color: #fff;
  border: 2px solid var(--primary-pink);
  transition: all 0.3s ease;
  height: 80px;
  margin-top: 1rem;
}

.section2 .btn:hover {
  background: white;
  color: var(--primary-pink);
  border-color: var(--primary-pink);
}

.section4 .features-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap; 
}

.section4 .feature {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  min-height: 100%; 
}

.section4 .feature ul {
  flex-grow: 1; 
}

.button-container {
  text-align: center;
  margin-top: 20px;
}

.register-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  color: #fff;
  min-width: 180px;  
  font-size: 21px;
}

.register-button:not(.pink) {
  background-color: var(--primary-blue);
}

.register-button:not(.pink):hover {
  background-color: var(--primary-blue);
}

.register-button.pink {
  background-color: var(--primary-blue);
}

.register-button.pink:hover {
  background-color: color-mix(in srgb, var(--primary-blue) 85%, black 15%);
}

@media (max-width: 1600px) {
  .section2-balanced-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    overflow-x: hidden;
  }

  .section2-balanced-cards .benefit-card {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: 400px;
    min-width: 300px;
  }
}


@media (max-width: 1440px) {
  html {
    font-size: 16px;
  }

  .section1 .content h1 {
    max-width: 98%;  
    line-height: 1.2;
    word-break: normal;
    hyphens: auto;
  }


  .section2-balanced-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    overflow-x: hidden;  
    padding: 1rem 0;
  }

  .section2-balanced-cards .benefit-card {
    flex: 1 1 calc(33.333% - 2rem); 
    max-width: 400px;
    min-width: 300px;
    box-sizing: border-box;
  }

  .section2-balanced-cards .benefit-card:nth-last-child(1):nth-child(3n+1),
  .section2-balanced-cards .benefit-card:nth-last-child(2):nth-child(3n+1) {
    justify-self: center;
  }

  .section2 h1 {
    font-size: 56px;
  }

  .section2 p,
  .section2-balanced-cards .benefit-card p {
    font-size: 21px;
    line-height: 1.5;
  }

  .section2 .auth-buttons {
    margin-top: 2rem;
  }

  .section2 {
    padding: 3.5rem 6%;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
  }

  .navbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 1.5rem;  
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    cursor: pointer;
  }

  .hamburger span {
    background-color: var(--primary-blue);
  }

  .nav-links,
  .navbar-right {
    display: none;
  }


  .navbar-right .auth-buttons {
    display: none; 
  }

  .mobile-auth-buttons {
    display: flex; 
  }

  .section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 3.5rem; 
    gap: 1.5rem; 
    padding-top: 0.5rem;           
  }

  .section1 .image {
    order: -1;  
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: 0;
    justify-content: center;
  }

  .section1 .image img {
    width: 90%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    content: url("/static/img/lp6.webp");
  }

  .section1 .content h1 {
    line-height: 1.25;
  }

  .section1 .content h2 {
    margin-bottom: 0.2rem;
  }

  .section1 .content p {
    margin-bottom: 0 !important;
    line-height: 1.2;
  }

  .section1 .auth-buttons {
    margin-top: 1.5rem;
  }

  .section1 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    max-width: 900px;  
  }

  .section1 .content h1 {
    max-width: 95%;
    line-height: 1.2;
    margin: 0 auto;
    word-break: keep-all;
    white-space: normal;
  }

  .section1 .content h1 {
    margin-bottom: 1rem;
  }

  .nav-item {
    font-size: 20px;
  }

  .section1 .image img {
    width: 80%;
    margin: 1rem auto 0;
  }

  .section1 .auth-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto 0;
  }

  .section2 {
    margin-top: 1.5rem;
  }

  .section2-balanced-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    overflow-x: hidden;
  }

  .section2-balanced-cards .benefit-card {
    flex: 1 1 calc(50% - 2rem);
    max-width: 450px;
    min-width: 280px;
    box-sizing: border-box;
  }

  .section2 .btn {
    margin-top: -0.3rem;
  }

  .section2 p {
    font-size: 33px;
  }

  .section2-balanced-cards .benefit-card h3 {
    font-size: 30px;
  }

  .section3 .benefit-card {
    min-width: 400px;
  }

  .section2,
  .section3,
  .section4,
  .section5,
  .section6 {
    padding: 3rem 5%;
  }

  .section5,
  .section6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }

  .section5 .image-container,
  .section6 .image-container {
    order: -1;  
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .section5 .image-container img,
  .section6 .image-container img {
    width: 90%;
    height: auto;
    object-fit: contain;
  }

  .section5 .content,
  .section6 .content {
    display: flex;
    flex-direction: column;
    align-items: center;   
    justify-content: center;
    text-align: center;    
    margin: 0 auto;
    padding-top: 0;
  }

  .section5 h1,
  .section5 h2,
  .section6 h1,
  .section6 h2 {
    text-align: center;
    width: 100%;
    margin: 0 auto 1rem auto;  
  }

  .section5 .points,
  .section6 .points {
    padding-left: 5rem;
  }

  .section5 .auth-buttons,
  .section6 .auth-buttons {
    display: flex;
    justify-content: center;  
    align-items: center;    
    gap: 1rem;               
    width: 100%;
  }

  .section5 {
    margin-top: 0;
    padding-top: 0;
  }

  .section6 {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .feature {
    max-width: 600px;
  }

  .features-grid {
    max-width: 600px;    
    margin: 0 auto;       
    display: grid;
    grid-template-columns: 1fr; 
    justify-items: center;  
    gap: 2rem;           
  }

  .section-crm h1 {
    text-align: center;
    font-size: 45px;
  }

  .section-crm p {
    font-size: 35px;
  }

  .section-crm .crm-highlight {
    padding: 1rem;
  }

  .section-crm .cta-section h2 {
    font-size: 42px;
  }

  .section-crm .btn {
    font-size: 30px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
  }

  .footer-column h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-h3-large);
    color: var(--text-light);
    cursor: pointer;
    padding: 0.8rem 0;
    margin: 0;
    position: relative;
  }

  .footer-column h3::after {
    content: '▾';
    font-size: 2rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
  }

  .footer-column h3.active::after {
    transform: rotate(180deg);
  }

  .footer-column .footer-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .footer-column .footer-links.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 0.5rem;
  }

  .footer-column .footer-links a {
    display: block;
    font-size: 24px;
    color: var(--text-light);
    text-decoration: none;
    margin: 0.3rem 0;
  }

  .footer-column .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-bottom {
    flex-direction: column;         
    align-items: center;       
    justify-content: center;
    text-align: center;
    gap: 0.75rem;                   
    font-size: 24px;               
    padding-top: 1.5rem;
    border-top: none;
  }

  .section2 h1 {
    font-size: 48px;
  }

  .section5 h1, .section5 h2, .section6 h1, .section6 h2 {
    margin-bottom: 0;
  }

  .section3 h1 {
    font-size: 40px;
  }

  .section3 .subtitle {
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1, h2, h3, p, a, li, span {
    font-size: inherit;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo img {
    height: 3rem;
    width: 3rem;
  }

  .section1 .content h1,
  .section2 h1,
  .section3 h1,
  .section4 h1,
  .section5 h1,
  .section6 h1 {
    font-size: 35px;
    line-height: 3rem;
  }

  .section1 .content h2,
  .section4 h2,
  .section5 h2,
  .section6 h2 {
    font-size: 32px;
    margin-top: 0.5rem;
  }

  .section3 .subtitle,
  .section3 .benefit-card h3,
  .section4 .feature h3,
  .section2-balanced-cards .benefit-card h3 {
    font-size: var(--font-h3-small);
  }

  .section1 .content p,
  .section2 p,
  .section3 p,
  .section4 p,
  .section5 p,
  .section6 p,
  .feature ul li {
    font-size: 21px;
  }

  .section2 p, .section2-balanced-cards .benefit-card p {
    font-size: 21px;
  }

  .section2 h1 {
    margin-bottom: 0;
  }

  .btn,
  .navbar a,
  .nav-item,
  .footer-column a,
  .footer-bottom {
    font-size: var(--font-small-small);
  }

  .section3 .benefit-card i {
    font-size: 55px;
  }

  .btn {
    padding: 0.5rem 1rem;
    height: 42px;
    min-width: 100px;
    font-size: var(--font-small-small);
    border-radius: 8px;
  }

  .auth-buttons .btn {
    min-width: 110px;
    height: 44px;
    font-size: 1.2rem;
    padding: 0 2rem;
  }

  .section1 {
    padding-top: 1rem;
    padding-bottom: 3rem;
    gap: 1rem;
  }

  .section1 .content h1 {
    line-height: 1;
    max-width: 90%;
  }

  .section1 .auth-buttons {
    margin-top: 1.2rem;
    gap: 0.8rem;
  }

  .section2-balanced-cards .benefit-card {
    flex: 1 1 100%;
    max-width: 300px;
    padding: 1.5rem;
  }

  .section2-balanced-cards .benefit-card i
  .section3 .benefit-card i {
    font-size: 55px !important;
  }

  .section2-balanced-cards .benefit-card i {
    font-size: 55px;
  }

  .section3 .benefit-card {
    min-width: 300px;
  }

  .section3 .benefit-card p {
    font-size: 21px;
  }

  .section5 {
    padding-bottom: 0.5rem;
  }

  .section5 .points .card p {
    font-size: 21px;
  }

  .section5 .points {
    padding: 0 2rem;
    padding-left: 3.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  
  .section6 .points {
    padding-left: 3.5rem;
    margin: 1rem 0;
  }

  .section6 .points .card p {
    font-size: 21px;
  }

  .section5 .image-container img,
  .section6 .image-container img {
    width: 95%;
    margin: 0;
  }

  .section5 .content,
  .section6 .content {
    align-items: center;
    text-align: center;
  }

  .section5 .auth-buttons,
  .section6 .auth-buttons {
    justify-content: center;
  }

  .section5 .image-container, .section6 .image-container {
    margin-bottom: 1.5rem;
  }

  .feature ul li::before {
    margin-top: -0.2rem;
  }

  .section-crm {
    padding-bottom: 1rem;
  }

  .section-crm h1 {
    font-size: 25px;
    padding: 0 1rem;
    margin-bottom: 0;
  }

  .section-crm p {
    font-size: 22px;
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 0.5rem;
  }

  .section-crm .feature-item p {
    font-size: 21px;
    text-align: left;
  }

  .section-crm .feature-item {
    gap: 0;
    padding: 1rem;
    align-items: center;
  }

  .section-crm .feature-item i {
    padding-left: 1rem;
  }

  .section-crm .crm-highlight h2 {
    font-size: 30px;
  }

  .section-crm .crm-highlight p {
    font-size: 21px;
    padding: 0;
  }

  .section-crm .crm-highlight {
    margin-bottom: 1.5rem;
  }

  .section-crm .crm-highlight p {
    font-size: var(--font-p-small);
  }

  .section-crm .why-giggenius {
    margin-bottom: 0;
  }

  .section-crm .cta-section {
    margin-top: 1.5rem;
  }

  .section-crm .cta-section h2 {
    font-size: 27px;
    line-height: 50px;
    margin-bottom: 0;
  }

  .section-crm .btn {
    font-size: 20px;
    height: 60px;
    width: 510px;
    margin-bottom: 1rem;
  }

  .section-crm .crm-features {
    margin-bottom: 1.5rem;
  }

  .section2-balanced-cards .benefit-card h3 {
    font-size: 25px;
    line-height: 1.9rem;
  }

  .feature ul li::before {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.4rem;
    margin-left: 1.3rem;
  }

  /* Footer layout */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    font-size: 16px;  
    text-align: center;
    border-top: none;
  }

  .footer-column h3 {
    font-size: var(--font-h3-small);
  }

  .footer-column h3.active::after {
    font-size: 1.5rem;
  }
  
  .footer-column .footer-links a {
    font-size: 16px;
    text-align: left;
  }

  .social-icons {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .social-icons .bi {
    font-size: 1.4rem;
  }

  .nav-item {
    font-size: var(--font-smaller-large);
  }

  .section6 h2 {
        font-size: 27px;
  }

  .section3 .benefit-card h3{
    font-size: 25px;
  }

  .section3 .subtitle{
      line-height: 1.2;
      margin-top: 1rem;
  }

  .section4 .feature h3{
    margin-top: 0rem;
  }

  .feature ul li {
        line-height: 1.2;
    }

    .section4 h1 {
      margin-top:0rem;
    }

    .section2 p{
        font-size: 25px;
        line-height: 1.2;
        margin-top: 0.5rem;
    }

    .section2-balanced-cards .benefit-card p {
        font-size: 21px;
    }

    .section1 .content h2{
      margin-top: -0.4rem;
    }

    .section1 .content p{
      margin-top: 0.5rem;
    }
        

}

@media (max-width: 430px) {
    html {
        font-size: 13px;
    }

    .section1 .content h1 {
      max-width: 100%;
      font-size: 27px;
    }

    .section1 .content h2 {
      font-size: 27px;
      margin-top: 0;
    }

    .section2 h1 {
      font-size: 27px;
      line-height: 2rem;
    }

    .section2 p {
      line-height: 1.8rem;
      margin: 1rem 0;
    }

    .section1 .image img {
        width: 100%;
        }

    .auth-buttons .btn {
        font-size: 12px;
        padding: 0 1rem; 
    }

    .section2 p, .section2-balanced-cards, .benefit-card p {
        font-size: 15px;
    }

    .section3 .subtitle {
      font-size: 25px;
      margin: 1rem 0;
    }

    .section-crm .cta-section h2 {
        line-height: 30px;
    }

    .section-crm .btn {
        font-size: 16px;
        height: 60px;
        width: 300px !important;
    }

    .section6 .image-container img,
    .section5 .image-container img {
        margin-left: 0;
    }

    .section5 .points {
        padding: 0;
    }

    .section6 {
        padding-bottom: 0;
    }

    .section5 h1, .section5 h2, .section6 h1, .section6 h2 {
        margin: 0 auto;
    }

    .section1 .content h1, .section2 h1, .section3 h1, .section4 h1, .section5 h1, .section6 h1 {
        font-size: 27px;
        line-height: 2rem;
        margin: 0;
    }

    .section3 .subtitle, .section3 .benefit-card h3, .section4 .feature h3, .section2-balanced-cards .benefit-card h3 {
        font-size: 23px;
        line-height: 1.9rem;
        margin: 1rem 0;
        padding: 0;
    }

     .section3 .benefit-card p {
        font-size: 15px;
    }

    .section1 .content p, .section2 p, .section3 p, .section4 p, .section5 p, .section6 p, .feature ul li {
        font-size: 15px;
    }


    footer {
        padding: 1rem 5%;
    }

    .section-crm .crm-highlight h2 {
        font-size: 26px;
    }

    .section5 h2{
      font-size: 25px;
    }

    .section6 h1{
      font-size: 30px;
    }

    .section6 h2 {
      font-size: 25px;
    }

    .register-button {
      font-size: 15px;
    }

    .section1 .content h1{
      line-height: 2.3rem;
    }

    .section2 p{
      font-size: 20px;
    }

    .section2 p, .section2-balanced-cards .benefit-card p {
        font-size: 15px;
    }

    .section3 .subtitle{
        font-size: 21px;
    }

    .section4 h1{
      margin-bottom: 2rem;
    }

    .section4 .feature h3 {
      margin: 0 auto;
      margin-bottom: 1rem;
    }

    .section-crm .feature-item p {
        font-size: 15px;
    }

    .section5 h1, .section6 h1{
      margin-bottom: 0rem;
    }

    .section5 .points .card p {
        font-size: 17px;
    }

    .section6 .points .card p {
        font-size: 17px;
    }

    .section6 .points{
      padding-left: 0;
    }

    .section2 p{
          font-size: 18px;
        }

    .section-crm p{
          font-size: 18px;
        }

    .section-crm .crm-highlight h2 {
        line-height: 1.2;
    }

    .section6 .btn, .section5 .btn{
      margin-left: 0;
    }
}

@media (max-width: 320px) {
  .section-crm .crm-highlight h2 {
    font-size: 27px;
  }

  .section-crm .crm-highlight p {
    font-size: 15px;
  }

}