
       .newsletter {
            padding: 80px 0;
            background: linear-gradient(rgba(35, 46, 60, 0.7), rgba(35, 46, 60, 0.7)), url('../img/home/home_2.jpg') no-repeat center center/cover;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-control {
            height: 50px;
            border-radius: 30px;
            padding-left: 20px;
            border: none;
        }

        .btn-subscribe {
            background-color: var(--deep-blue);
            color: var(--white);
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-subscribe:hover {
            background-color: var(--sky-blue);
        }

        /* Add these styles from the new design */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-subscribe {
            transition: all 0.3s ease;
        }

        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .form-control:focus {
            border-color: #ff7e5f;
            box-shadow: 0 0 0 0.25rem rgba(255, 126, 95, 0.25);
        }

        .alert {
            border-radius: 8px;
            padding: 12px 20px;
            margin-top: 20px;
            display: none;
            animation: fadeIn 0.5s ease-in;
        }

        .success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .security-badge {
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
            color: #6c757d;
        }

        .security-badge i {
            color: #28a745;
            margin-right: 5px;
        }
        /* Footer */
        footer {
            background-color: var(--dark-navy);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-links h5:after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: var(--sky-blue);
            margin-top: 10px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--sky-blue);
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: var(--white);
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--deep-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            color: var(--gray);
        }
        