
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  background-color: khaki;
}

body {
    font-family: 'Brush Script MT';
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {

    color: orange;
}

ul {
    list-style: none;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* --- Navigation --- */

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}


/* --- Hero Section --- */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 7.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 300;
    color: orange;
}

.hero p {
    font-size: 2.2rem;
    color: green;
}


