* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */

header {
    background: #101a2d;
    color: white;
    padding: 22px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #d7ad52;
    font-size: 28px;
    letter-spacing: 1px;
}

.logo p {
    color: #dddddd;
    font-size: 13px;
}

.header-contact {
    text-align: right;
}

.header-contact span {
    display: block;
    color: #bbbbbb;
    font-size: 13px;
}

.header-contact a {
    color: #d7ad52;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/* Navigation */

nav {
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    padding: 15px 0;
    text-align: center;
}

nav a {
    color: #172033;
    text-decoration: none;
    margin: 0 15px;
    font-size: 15px;
    font-weight: bold;
}

nav a:hover {
    color: #b7892f;
}

/* Hero */

.hero {
    background: #17243b;
    color: white;
    padding: 110px 0;
}

.hero-content {
    max-width: 720px;
}

.small-title,
.section-label {
    color: #c99c43;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero h2 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero p {
    color: #dddddd;
    font-size: 17px;
    max-width: 680px;
    margin-bottom: 25px;
}

/* Buttons */

.gold-button {
    display: inline-block;
    background: #c99c43;
    color: #111827;
    text-decoration: none;
    padding: 12px 24px;
    margin-right: 8px;
    font-weight: bold;
}

.gold-button:hover {
    background: #e0bd75;
}

.outline-button {
    display: inline-block;
    border: 1px solid #c99c43;
    color: #c99c43;
    text-decoration: none;
    padding: 11px 24px;
    font-weight: bold;
}

.outline-button:hover {
    background: #c99c43;
    color: #111827;
}

/* Introduction */

.intro {
    padding: 75px 0;
    background: white;
}

.intro .container {
    display: flex;
    gap: 60px;
}

.intro-left {
    width: 45%;
}

.intro-right {
    width: 55%;
}

.intro h2 {
    font-size: 34px;
    color: #101a2d;
}

.intro-right p {
    margin-bottom: 15px;
    color: #555555;
}

/* About */

.about {
    background: #f2eee5;
    padding: 75px 0;
}

.about-box {
    max-width: 850px;
}

.about h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #101a2d;
}

.about p {
    margin-bottom: 16px;
    color: #4c4c4c;
}

/* Collection */

.collection {
    padding: 75px 0;
}

.collection h2,
.services h2,
.values h2,
.contact h2 {
    color: #101a2d;
    font-size: 36px;
    margin-bottom: 30px;
}

.collection-list {
    border-top: 1px solid #dddddd;
}

.collection-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #dddddd;
}

.collection-item span {
    color: #c99c43;
    font-size: 20px;
    font-weight: bold;
}

.collection-item h3 {
    margin-bottom: 5px;
    color: #172033;
}

.collection-item p {
    color: #666666;
}

/* Services */

.services {
    background: #101a2d;
    color: white;
    padding: 75px 0;
}

.services h2 {
    color: white;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    width: 48%;
    border: 1px solid #39445a;
    padding: 30px;
    background: #17243b;
}

.service-card h3 {
    color: #d7ad52;
    margin-bottom: 10px;
    font-size: 20px;
}

.service-card p {
    color: #cccccc;
}

/* Values */

.values {
    padding: 75px 0;
    background: #f8f8f8;
}

.value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.value-list div {
    width: 48%;
    background: white;
    border-left: 4px solid #c99c43;
    padding: 25px;
}

.value-list h3 {
    margin-bottom: 8px;
}

.value-list p {
    color: #666666;
}

/* Contact */

.contact {
    padding: 80px 0;
    text-align: center;
    background: #f2eee5;
}

.contact-text {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #555555;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 950px;
    margin: 0 auto 35px;
    text-align: left;
}

.contact-details div {
    background: white;
    padding: 25px;
    width: 33%;
    border: 1px solid #dddddd;
}

.contact-details h3 {
    color: #b7892f;
    margin-bottom: 10px;
}

.contact-details p {
    color: #555555;
}

.contact-details a {
    color: #172033;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */

footer {
    background: #101a2d;
    color: white;
    text-align: center;
    padding: 35px 0;
}

footer h2 {
    color: #d7ad52;
    margin-bottom: 5px;
}

footer p {
    color: #bbbbbb;
    margin: 5px 0;
}

/* Mobile */

@media (max-width: 700px) {

    header .container {
        display: block;
        text-align: center;
    }

    .header-contact {
        text-align: center;
        margin-top: 12px;
    }

    nav a {
        display: inline-block;
        margin: 5px 7px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h2 {
        font-size: 35px;
    }

    .intro .container {
        display: block;
    }

    .intro-left,
    .intro-right {
        width: 100%;
    }

    .intro-right {
        margin-top: 25px;
    }

    .service-card {
        width: 100%;
    }

    .value-list div {
        width: 100%;
    }

    .contact-details {
        display: block;
    }

    .contact-details div {
        width: 100%;
        margin-bottom: 15px;
    }
}