        body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', Arial, sans-serif;
            background-color: #8ba7db; 
            color: #000;
            display: flex;
            flex-direction: column;
            min-height: 100vh; 
        }
        nav {
            display: flex;
            justify-content: space-between;
            padding: 30px 40px;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 3px;
        }
        .nav-links a {
            margin-left: 30px;
            text-decoration: none;
            color: black;
        }
        .contact-section {
            flex-grow: 1;   
            display: flex;
            flex-direction: column;
            justify-content: center; 
            align-items: center; 
            text-align: center;
        }

        h1 {
            color: white;
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px; 
            opacity: 0.9;
            animation: fadeInDown 1s ease-out;
        }

        .email-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: transparent; 
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            letter-spacing: 2px;
            border: 1px solid white; 
          
        }

        .email-button:hover {
            background-color: white;
            color: #8ba7db; 
        }
