* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
}

/* HEADER */
header {
    background: #0b1f3a;
    padding: 12px 20px 16px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    align-items: center;
}

.logo img {
    width: 210px;
    height: auto;
    display: block;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-weight: 800;
}

nav a:hover {
    text-decoration: underline;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

/* TYPOGRAPHY */
h1 {
    font-size: 30px;
    color: #0b1f3a;
    margin-bottom: 15px;
}

h2 {
    font-size: 24px;
    color: #0b1f3a;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

/* BUTTONS */
.button {
    display: inline-block;
    background: #0b1f3a;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
}

.social-button {
    display: inline-block;
    padding: 10px 15px;
    background: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* SECTIONS */
.section {
    margin-bottom: 30px;
}

/* CARD (grey box) */
.card {
    background: #f7f7f7;
    padding: 30px 20px;
    border-radius: 10px;
}

/* ABOUT PREVIEW */
.home-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* ABOUT PAGE */
.about-wrapper .text {
    text-align: left;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 25px;
}

.about-wrapper img {
    width: 100%;
    border-radius: 10px;
    margin-top: 80px;
}


/* CONTACT PAGE */
.contact-wrapper {
    max-width: 520px;
    margin: auto;
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.contact-buttons {
    margin-bottom: 15px;
}

.contact-buttons a,
.contact-buttons button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 5px;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    background: #0b1f3a;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.contact-buttons a:hover,
.contact-buttons button:hover {
    background: #163a66;
}

form {
    margin-top: 20px;
    text-align: left;
}

form label {
    font-size: 14px;
    display: block;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 9px;
    margin-top: 4px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #0b1f3a;
    outline: none;
}

.checkbox-group {
    margin-bottom: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

form button {
    width: 100%;
    background: #0b1f3a;
    color: white;
    padding: 11px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

form button:hover {
    background: #163a66;
}

#copyMessage {
    font-size: 13px;
    color: green;
    margin-top: 5px;
}

.success-message {
    display: none;
    color: green;
    margin-top: 15px;
    font-size: 14px;
}

.credibility {
    margin-top: 20px;
    text-align: center;
}

.aat-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto 10px auto;
}

.aat-text {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* MOBILE HEADER FIX */
@media (max-width: 700px) {
    header {
        padding: 10px 12px;
    }

    .header-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        width: 170px;
        height: auto;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav a {
        font-size: 16px;
        font-weight: 800;
    }
}
/* MOBILE ABOUT PAGE FIX */
@media (max-width: 700px) {
    .about-wrapper {
        display: block;
    }

    .about-wrapper .photo {
        text-align: center;
        margin-bottom: 20px;
    }

    .about-wrapper img {
        width: 220px;
        max-width: 100%;
        margin: 20px auto 0 auto;
        display: block;
    }

    .about-wrapper .text {
        width: 100%;
        text-align: left;
    }

    .about-wrapper .text p {
        text-align: left;
        font-size: 16px;
        line-height: 1.6;
    }
}

