#form {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        /* Form container */
        .form-container {
            text-align: center;
        }

        /* Header and subtitle */
        .form-container h1 {
            position: relative;
            font-family: 'CopperplateCC-Bold', serif !important;    
            font-size: 40px;
            color: #3D3D85;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .form-container p {
            font-family: 'Garet', serif !important;
            font-size: 20px;
            color: #3D3D6D;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        /* Input fields */
        .form-container input, .form-container textarea {
            font-family: 'CopperplateCC-Regular', serif !important;
                        background: linear-gradient(90deg, rgba(61, 61, 133, 1) 0%, rgba(149, 148, 207, 1) 100%);

           
            color: white;
            position: relative;
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border-radius: 5px;
            border: none;
            font-size: 16px;
           
            }

           

        .form-container input[type="text"], .form-container input[type="email"] {
            height: 50px;
             width: calc(50% - 5px);
        }

        .form-container textarea {
            height: 120px;
            resize: none;
        }
        
          .form-container input::placeholder,
.form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important; /* or pure white */
}

        /* Submit button */
    .form-container .submit-button {
            font-family: 'CopperplateCC-Regular', serif !important;
            background: #3D3D85;
            color: White;
            position: relative;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            padding: 15px;
            cursor: pointer;
            width: 20%;
            text-transform: uppercase;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }
        .form-container .submit-button:hover {
            background-color: #555588;
        }

/* CSS for footer */

 .footer-section {
    background: #3D3D85;
    background: linear-gradient(90deg, rgba(61, 61, 133, 1) 0%, rgba(149, 148, 207, 1) 100%);
            color: white;
            padding: 50px 20px 30px;
        }

        .newsletter {
            margin-bottom: 50px;
            margin-left: 8vw;
            margin-right: auto;
        }

        .newsletter p {
            font-family: 'Garet', sans-serif !important;
            font-size: 18px;
            margin-bottom: 25px;
            color: white;
        }

        .newsletter-input {
            margin-bottom: 50px !important;
           
            margin-right: 60px !important;
            display: flex;
            gap: 15px;
            margin: 0 auto;
        }

        .newsletter-input input {
            font-family: 'CopperplateCC-Regular', serif !important;
            flex: 1;
            padding: 15px 20px;
            border: 2px solid white;
            border-radius: 8px;
            background-color: transparent;
            color: white;
            font-size: 16px;
            outline: none;
        }

        .newsletter-input input::placeholder {
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            font-size: 14px;
        }

          .newsletter-input button {
            font-family: 'CopperplateCC-Regular', serif !important;
            position: relative;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            background: #3D3D85;
  background: linear-gradient(90deg, rgba(99, 98, 155, 1) 0%, rgba(61, 61, 133, 1) 100%);  
            color: white;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
            opacity: 100%;
        }

        .newsletter-input button:hover {
            opacity: 100%;
            background-color: #3A3A7A;
        }

        .footer-content {
            font-family: 'CopperplateCC-Regular', serif !important;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            text-align: left;
            flex-wrap: wrap;
            max-width: 1200px;
            margin-left: 60px;
            gap: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .contact-us {
            flex-basis: 100%;
            order: 1;
        }

        .footer-column h3 {
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: bold;
            color: white;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .services-column ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px 20px;
        }

        .services-column ul li {
            margin-bottom: -9px;
        }

        .footer-column ul li a {
            font-family: 'Garet', sans-serif !important;

            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s ease;
        }

        .footer-column ul li a:hover {
            opacity: 0.8;
        }



        .contact-us p {
            font-family: 'Garet', sans-serif !important;
            margin-bottom: 10px;
            color: white;
            font-size: 14px;
            line-height: 1.5;
        }

        .contact-us a {
            color: white;
            text-decoration: none;
        }

        .contact-us a:hover {
            opacity: 0.8;
        }


       
        /* Responsive Design */
        
        /* Tablet Styles (1024px and below) */
        @media (max-width: 1024px) {
            .form-container h1 {
                font-size: 36px;
            }
            
            .form-container p {
                font-size: 18px;
            }
            
            .newsletter {
                margin-left: 40px;
            }
            
            .footer-content {
                margin-left: 40px;
            }
        }
        
        /* Mobile Styles (768px and below) */
        @media (max-width: 768px) {
            #form {
                height: auto;
                padding: 40px 20px;
            }
            
            .form-container h1 {
                font-size: 28px;
            }
            
            .form-container p {
                font-size: 16px;
            }
            
            .form-container input[type="text"], 
            .form-container input[type="email"] {
                width: 100%;
                margin-bottom: 10px;
            }
            
            .form-container .submit-button {
                width: 100%;
                font-size: 16px;
            }
            
            .newsletter {
                margin-left: 20px;
                margin-right: 20px;
            }
            
            .newsletter-input {
                flex-direction: column;
                gap: 15px;
                margin-right: 20px !important;
            }

            .newsletter-input input,
            .newsletter-input button {
                width: 100%;
            }

            .footer-content {
                display: block;
                text-align: left;
                margin-left: 20px;
                margin-right: 20px;
            }

            /* vertical spacing between stacked sections */
            .footer-column {
                margin-bottom: 24px;
            }
            
            .footer-column.services-column {
                margin-top: 8px;
            }
            
            .contact-us {
                margin-top: 8px;
            }
            
            .footer-column h3 {
                font-size: 15px;
            }
            
            .footer-column ul li a {
                font-size: 12px;
            }
            
            .contact-us p {
                font-size: 12px;
            }

            .services-column ul {
                grid-template-columns: repeat(3, 1fr);
            }
            
          
        }
        
        /* Small Mobile Styles (480px and below) */
        @media (max-width: 480px) {
            .form-container h1 {
                font-size: 24px;
            }
            
            .form-container p {
                font-size: 14px;
            }
            
            .newsletter {
                margin-left: 10px;
                margin-right: 10px;
            }
            
            .newsletter p {
                font-size: 11px;
            }
            
            .newsletter-input {
                margin-right: 10px !important;
            }
            
            .footer-content {
                display: block;
                text-align: left;
                margin-left: 10px;
                margin-right: 5px;
            }
            
            /* tighter spacing on smaller phones */
            .footer-column {
                margin-bottom: 40px;
            }
            
            .footer-column.services-column {
                margin-top: 6px;
                margin-right: 10px;
                font-size: 5px;
            }
            
            .contact-us {
                margin-top: 6px;
            }
            
            .footer-column h3 {
                font-size: 13px;
            }
            
            .footer-column ul li a {
                font-size: 10px;
            }
            
            .contact-us p {
                font-size: 11px;
            }

            .services-column ul {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px 8px;
            }
            
        
        }
        
        /* Extra Small Mobile (320px and below) */
        @media (max-width: 320px) {
            .form-container h1 {
                font-size: 20px;
            }

            .footer-content {
                gap: 12px;
            }
            
            .footer-column h3 {
                font-size: 12px;
            }
            
            .footer-column ul li a {
                font-size: 8px;
            }
            
            .contact-us p {
                font-size: 10px;
            }

        }