* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Alexandria', sans-serif;
    color: #2c2c2c;
    background: #ffffff;
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.narrow {
    max-width: 700px;
}

/* Header */
.top-header {
    border-bottom: 1px solid #e5e5e5;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand h1 {
    margin: 0;
    font-size: 22px;
    color: #1e3a5f;
}

.brand span {
    font-size: 13px;
    color: #666;
}

nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: #f7f9fc;
}

.hero h2 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    color: #555;
}

/* Sections */
.section {
    padding: 70px 0;
}

.section h3 {
    color: #1e3a5f;
    margin-bottom: 25px;
}

.gray {
    background: #f7f9fc;
}

/* Grid Boxes */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.box {
    padding: 25px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-weight: 500;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #ddd;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px;
    background: #1e3a5f;
    color: #fff;
    font-size: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 55px;
    height: auto;
}

.brand-text h1 {
    margin: 0;
    font-size: 20px;
    color: #1e3a5f;
}

.brand-text span {
    font-size: 12px;
    color: #666;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact-logo img {
    width: 140px;
}

.contact-info h3 {
    margin-top: 0;
    color: #1e3a5f;
}

.contact-info p {
    margin: 8px 0;
    color: #444;
}

.contact-info span {
    display: inline-block;
    width: 110px;
    font-weight: 600;
    color: #1e3a5f;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
        text-align: center;
    }

    .contact-info span {
        width: auto;
        display: block;
        margin-bottom: 3px;
    }
}

/* Icons inside boxes */
.box i {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
    color: #1e3a5f;
}

/* Better mobile header */
@media (max-width: 900px) {
    .top-header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        margin: 0;
    }
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
        text-align: center;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero p {
        font-size: 14px;
    }
}

/* Grid mobile spacing */
@media (max-width: 600px) {
    .grid {
        gap: 15px;
    }

    .box {
        padding: 20px;
        font-size: 14px;
    }
}
