body {
    font-family: "Playfair Display", serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: linear-gradient(to bottom, #1A3E34, #000);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
    font-weight: bold;
}

.hero p {
    font-size: 1.5em;
    margin: 15px 0 30px;
    font-weight: 300;
}

.hero .cta {
    display: inline-block;
    background: #DAA520;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: bold;
}

.hero .cta:hover {
    background: #1A3E34;
    transform: scale(1.05);
}

nav {
    background: #000;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #DAA520;
}

section {
    padding: 40px;
    margin: 30px auto;
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section h2 {
    margin-top: 0;
    color: #1A3E34;
    font-size: 2.5em;
    font-weight: bold;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    margin: 0 10px;
    background: #DAA520;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1.2em;
}

.tab:hover {
    background: #1A3E34;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

form label {
    display: block;
    margin: 15px 0 5px;
    font-size: 1.1em;
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    font-family: "Playfair Display", serif;
}

form button {
    background: #DAA520;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 1.2em;
    font-weight: bold;
}

form button:hover {
    background: #1A3E34;
    transform: scale(1.05);
}

.project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    background: #000;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 1em;
}
