@font-face {
    font-family: 'Aptos Black';
    src: url('/fonts/Aptos-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a4a8e; 
    color: white;
    line-height: 1.6;
    margin: 0; 
    padding: 0; 
    -webkit-text-size-adjust: 100%;
}

.main-content {
    text-align: center;
    font-family: 'Aptos Black', Arial, sans-serif;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.aptos-title { font-size: 32px; font-weight: 900; margin-bottom: 10px; }
.aptos-subtitle { font-size: 20px; margin-bottom: 10px; }
.aptos-text { font-size: 16px; margin-bottom: 25px; color: #f2f2f2; }

.profile-pic {
    max-width: 300px;
    width: 90%;
    border: 5px solid black;
    margin-bottom: 25px;
    height: auto;
}

.custom-nav { margin: 20px 0; }
.custom-nav a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    margin: 5px;
    font-weight: bold;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 40px 0;
}

.social-icon {
    width: 220px; 
    height: auto;
}

.mail-list-text a {
    color: white; 
    text-decoration: none; 
}

.mail-list-text a:hover {
    text-decoration: underline; 
    color: #f2f2f2; 
}

.contact-area { margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); }
.mail-list-text { font-weight: bold; margin-bottom: 20px; }
.contact-item { margin: 10px 0; }
.contact-item a { color: white; }

@media screen and (min-width: 768px) {
    .aptos-title { font-size: 42px; }
    .social-section {
        flex-direction: row; 
        justify-content: center;
        gap: 60px;
    }
}

.signup-button {
    display: inline-block;
    color: white !important;      
    text-decoration: none;        
    background-color: transparent;
    padding: 15px 25px;
    border: 3px solid white;      
    border-radius: 8px;           
    font-family: 'Aptos Black', sans-serif;
    font-weight: 900;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.signup-button:hover {
    background-color: white;
    color: #1a4a8e !important;    
}