{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#b5b5b5;
    color:#2a1708;
    line-height:1.6;
}

header{
    background:#b5b5b5;
    padding:20px;
    text-align:center;
}

nav{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

nav a{
    text-decoration:none;
    color:#2a1708;
    font-weight:bold;
}

nav a:hover{
    color:#d7a03e;
}

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.hero-logo{
    width:500px;
    max-width:90%;
    margin-bottom:40px;
}

.hero h1{
    font-size:2.5rem;
    max-width:900px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin-bottom:30px;
}

.btn{
    background:#d7a03e;
    color:white;
    padding:14px 28px;
    text-decoration:none;
    border-radius:4px;
}

.content{
    max-width:1100px;
    margin:auto;
    padding:60px 30px;
}

.logo-small img{
    width:120px;
    margin-bottom:15px;
}

.card,
.case-box,
.photo-placeholder{
    background:white;
    padding:30px;
    margin-top:20px;
    border-radius:8px;
}

.tagline{
    color:#d7a03e;
    font-weight:bold;
    margin-top:40px;
}

footer{
    text-align:center;
    padding:40px;
}
.contact-photo{
    width:250px;
    height:250px;
    object-fit:cover;
    border-radius:50%;
    display:block;
    margin:30px auto;
    border:4px solid #d7a03e;
}

.subtitle{
    text-align:center;
    color:#d7a03e;
    margin-bottom:30px;
    font-weight:400;
}
.profile-photo{
    width:300px;
    max-width:100%;
    display:block;
    margin:30px auto;
    border-radius:12px;
    border:4px solid #d7a03e;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
