        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Nunito, sans-serif;
        }
        
        body {
            background-color: #fef6f0;
            color: #222;
            line-height: 1;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .section {
            padding-bottom: 130px;
            padding-top: 25px;
            
        }


        .footer-hr {
            display: none;
        }
        .pause-design-text
        {
            color:#EF5034;
            font-family: Nohemi;
        }
        .container {
            display: flex;
            flex: 1;
            flex-direction: row; /* Always use row direction to keep sidebar on the left */
            margin-left: 138px;
        }

        hr {
            display: block;
            height: 1px;
            border: 0;
            border-top: 1px solid #E9DFD6;
            margin: 1em 0;
            padding: 0;
          }
          
        
        /* Sidebar Styles */
        .sidebar {
            color: white;
            position: fixed;
            padding: 20px;
            width: 154px; /* Fixed width */
            height: 100vh; /* Full height */
            position: fixed; /* Make it stick when scrolling */
            padding-top: 48px;
            
        }
        
        .logo {
            margin-bottom: 30px;
        }
        
        .logo h1 {
            font-size: 24px;
            font-weight: bold;
        }
        
        .sidebar-nav {
            display: flex;
            flex-direction: column;
            height: -webkit-fill-available;
            background-color: #EF5034;
            line-height: 1;
        }
        
        .sidebar-nav a {
            color: white;
            text-decoration: none;
            padding: 19px 10px;
            border-top: 1px solid #C53F28;
            padding-bottom: 15px;
            
        }
        
        /* Main Content Styles */
        .main-content {
            padding: 40px;
            max-width: 972px;
            margin-left: 138px;
            flex: 1;
            overflow-y: auto; /* Allow scrolling in the content area */
            margin-top: 10px;
        }
        
        h1 {
            font-family: Nohemi;
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        h2 {
            font-size: 22px;
            font-family: Nohemi;
            margin: 40px 0 15px 0;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        li {
            margin-bottom: 5px;
        }
        
        /* Footer Styles */
        .footer {
            width: 100%;
            z-index: 200;

        }
        ul
        {
            text-color: E9DFD6;
        }
        
        .footer-row {
            display: flex;
            flex-direction: row;
            width: 100%;
            background-color:#EF5034 ;
        }
        
        .footer-section {
            padding: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .footer-orange {
            background-color: #EF5034;
            color: white;
            
        }
        .footer-first {
            width: 158px;
        }
        .footer-second {
            width: 114px;

        }
        .footer-third {
            width: 50%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-white {
            background-color: #fef6f0;
            
        }
        
        .footer-section.social {
            justify-content: center;
            
            align-items: anchor-center;

        }
        
        .contact-info, .policy-info {
            margin-bottom: 0px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        /* Email links */
        a {
            color: #EF5034;
            text-decoration: none;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
        }
        
        .email-icon:after {
            content: "📧";
            margin-left: 5px;
        }
        
        .map-link {
            display: block;
            margin-top: 10px;
        }
        
        /* Footer box styles */
        .footer-box {
            flex: 1 1 calc(50% - 20px);
            min-width: 200px;
            padding-bottom: 15px;
            margin: 0 10px;
            margin-right: 0px;
            
        }
        .footer-box-right 
        {
            margin-left: 60px;
        }
        .logo-image {
            width: 154px;
            
                margin: -20px;
                padding: 20px;
                padding-bottom: 0px;
        }

        /* Responsive adjustments for footer boxes */
      

        @media (max-width: 767px) {
            .footer-box {
                flex: 1 1 1%;
                border-bottom: 1px solid #C53F28;
                margin-top: 25px;

                
            }
        }
        
        .social-logo {
            width: 25px;
        }
        
        /* FORM */
          
        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px 20px;
        }
        
        .form-field {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }
        
        label {
            color: #EF5034;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        input, textarea {
            border: none;
            border-bottom: 1px solid #ccc;
            padding: 10px 0;
            font-size: 16px;
            outline: none;
            background: #fef6f0;
        }
        
        textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .full-width {
            grid-column: span 2;
        }
        
        .required::after {
            content: "*";
            color: #EF5034;
        }
        button {
            background-color: #fef6f0;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            border-radius: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #fef6f0;
        }
        
        .arrow-icon {
            margin-left: 10px;
        }

        .response-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 4px;
            display: none;
        }
        
        .success {
            background-color: #e6f7e6;
            color: #2e7d32;
            border: 1px solid #2e7d32;
        }
        
        .error {
            background-color: #ffebee;
            color: #c62828;
            border: 1px solid #c62828;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-left: 10px;
            display: none;
        }

        .letsTalkButton {
            height: 52px;  
            margin-left: -5px;
            margin-bottom: 27px;

        }
        
        @media (max-width: 767px) {
            .form-container {
                grid-template-columns: 1fr;
            }
            
            .full-width {
                grid-column: span 1;
            }
            
            h1 {
                
                font-size: 25px;
        
            }

            .letsTalkButton {
                
                height: 47px;
                margin-left: -5px;
            }
            .letsMeetButton
            {
                height: 40px;
                margin-left: -5px;
            }
        }

        
        /* END FORM */
        /* Responsive Design - Modified to always keep sidebar on left */
        @media (max-width: 767px) {
            
            .sidebar-nav {
                background-color: #EF5034;
            }
            
            .sidebar {
                width: 90px; /* Smaller width on mobile */
                height: fit-content;
                position: fixed;
                margin-top: 68px;

 

            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .main-content {
                padding: 15px;
                margin-left: 90px;
                margin-right: 21px;



            }
            
            .logo {
                rotate: 270deg;
                margin-bottom: 12px;

            }

            .logo-image {
              
                width: 177px;
                margin: -23px;
                padding: 20px;
                padding-bottom: 0px;
                margin-bottom: -9px;
            }
            
            .sidebar-nav a {
                font-size: 10.22px;
                writing-mode: vertical-rl;
                text-orientation: mixed;
                transform: rotate(180deg);
                white-space: nowrap;
                margin: 0px;
                
            }
            
            .container {
                margin-left: 0px;
            }

            .footer-row {
                flex-direction: row;
            }
            
            .footer-section {
                padding: 16px;
            }

            .footer-first {
			margin-left: -14px;
			width: 0px;
        }
        .section {
            padding-bottom: 145px;
            
        }
        .footer-second {
            margin-left: 2px;
            width: 52px;
            min-width: 50px;
    
        }
        .footer-third {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            display: table-footer-group;
        }
        .social-icons{
            flex-direction: column;
            margin: auto;
        }
        .footer-hr {
            display: none;
        }
        .footer-box-right 
        {
            margin-left: 10px;
        }


        }
