@import url('https://fonts.googleapis.com/css2?family=Cerebri+Sans:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 90px;
    font-size: 16px;
    width: 100%;
    max-width: 1100px;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: auto;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.logo img {
    height: 40px;
    margin-right: 10px;
}
.logo span {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
a {
    text-decoration: none;
    color: inherit;
}
nav {
    display: flex;
    gap: 20px;
    align-items: center;
}
nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 18px;
}
.quote-button {
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    border-radius: 5px;
    cursor: pointer;
}
.quote-button2 {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #333333, #555555);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.quote-button:hover {
    background-color: #f0f0f0;
}
.container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    margin-top: 40px;
}
.container {
    max-width: 1100px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.text-section {
    max-width: 50%;
    font-family: 'Cerebri Sans', sans-serif;
}
h1 {
    font-size: 42px;
    font-weight: bold;
    margin-top: 50px;
}
.subtitle {
    font-size: 22px;
    color: #a78e45;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}
.cta-button2 {
    background-color: #0c0a0a;
    color: white;
    padding: 18px 28px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
}
.cta-button {
    background-color: #a78e45;
    color: white;
    padding: 18px 28px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
}
.cta-button:hover {
    background-color: #333;
}
.hero-image {
    max-width: 38%;
    height: auto;
    margin-top: 30px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 320px;
    text-align: center;
    position: relative;
}
.close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
input, textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.down-arrow {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.arrow-line {
    position: absolute;
    width: 30px;
    height: 7px;
    background-color: black;
    border-radius: 3px;
}
.left {
    transform: rotate(45deg) translateY(5px);
    transform-origin: left;
}
.right {
    transform: rotate(-45deg) translateY(5px);
    transform-origin: right;
}
.down-arrow:hover .arrow-line {
    opacity: 0.7;
}
.nav-container {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media (max-width: 768px) {
    .logo {
        display: none;
    }
    .nav-container {
        justify-content: left;
        width: 100%;
        padding-left: 5;
        margin-left: 5;
    }
    .nav-container a, .quote-button {
        font-size: 16px;
        padding: 16px 16px;
    }
    .quote-button {
        padding: 6px 10px;
        font-size: 16px;
    }
    header {
        padding-left: 0;
    }
    .nav-container a:first-child {
        display: none;
    }
    .hero-image {
        display: none;
    }
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .text-section {
        max-width: 100%;
    }
    .hero-image {
        display: block;
        max-width: 80%;
        height: auto;
        margin-top: 20px;
    }
}