        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #ffffff;
        }

        /* Sticky Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 255);
            backdrop-filter: blur(10px);
            z-index: 1000;
            /*padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);*/
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            /*padding: 0 2rem;
            display: flex;*/
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2b2f86;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #2b2f86;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: #900000;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #900000;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after, .nav-menu a.active::after {
            width: 100%;
        }

        /* Hero Section with Wavy Header */
        .hero {
            background-image: url("../assets/CHeaderTwo.png");
            /*background: linear-gradient(135deg, #2b2f86 0%, #900000 100%);*/
            min-height: 70vh;
            position: relative;
            display: flex;
            align-items: top;
            padding-top:150px;
            justify-content: center;
            overflow: hidden;
            margin-top: 0px;
        }

        .wave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-container svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 120px;
        }

        .wave-container .shape-fill {
            fill: #ffffff;
        }

        .hero-content {
            text-align: center;
            color: #2b2f86;
            z-index: 10;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Mobile Hero Section with Wavy Header */
        .mobilehero {
            background-image: url("../assets/CHeaderTwo.png");
            /*background: linear-gradient(135deg, #2b2f86 0%, #900000 100%);*/
            min-height: 70vh;
            position: relative;
            display: flex;
            align-items: top;
            padding-top:150px;
            justify-content: center;
            overflow: hidden;
            margin-top: 0px;
        }

        .mobilewave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .mobilewave-container svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 120px;
        }

        .mobilewave-container .shape-fill {
            fill: #ffffff;
        }

        .mobilehero-content {
            text-align: center;
            color: #2b2f86;
            z-index: 10;
            max-width: 800px;
            padding: 0 2rem;
        }

        .mobilehero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .mobilehero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            color: #2b2f86;
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #666;
        }

        .contact-item .icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2b2f86, #900000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.2rem;
        }

        .services-list {
            margin-top: 2rem;
        }

        .services-list h3 {
            color: #2b2f86;
            margin-bottom: 1rem;
        }

        .services-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }

        .services-list li a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .services-list li a:hover {
            color: #900000;
        }

        /* Contact Form */
        .contact-form {
            background: #f8f9fa;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            font-size: 2rem;
            color: #2b2f86;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2b2f86;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #2b2f86, #900000);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(43, 47, 134, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Success/Error Messages */
        .message {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Footer */
        .footer {
            background: #7f8080;
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .footer-section p, .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #9a9a9a;
            padding-top: 1rem;
            color: #e0e0e0;
        }

        /* Mobile Responsive */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #2b2f86;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav-menu.active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-menu li {
                padding: 0.5rem 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .services-list ul {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1rem;
            }
        }
#CellPhone
    {display: none;}
#HomePhone
    {display: none;}