body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #FFF9F3;
color: #3B3B3B;
}

header {
background: #FCEFE3;
padding: 10px 20px;
}

.header-top {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}

.logo-container .logo {
height: 60px;
width: auto;
}

.top-info {
display: flex;
flex-direction: column;
align-items: flex-end;
text-align: right;
}

.top-contact {
font-size: 14px;
margin-bottom: 5px;
}

.social-icons {
display: flex;
gap: 10px;
}

.social-icons img {
width: 24px;
height: 24px;
transition: opacity 0.3s ease;
}

.social-icons img:hover {
opacity: 0.7;
}

nav ul {
list-style: none;
padding: 0;
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

nav a {
text-decoration: none;
color: #3B3B3B;
font-weight: bold;
}

nav a.active,
nav a:hover {
color: #FF6F61;
}

main {
padding: 20px;
}

.hero {
text-align: center;
}

.hero img {
max-width: 100%;
height: auto;
}

.order-form,
.newsletter,
.download,
.about-us {
margin: 40px auto;
max-width: 600px;
}

form {
display: flex;
flex-direction: column;
gap: 10px;
}

input[type="text"],
input[type="email"],
input[type="file"],
button {
padding: 10px;
font-size: 16px;
}

button {
background-color: #FF6F61;
color: white;
border: none;
cursor: pointer;
}

button:hover {
background-color: #E85C50;
}

footer {
background: #FCEFE3;
text-align: center;
padding: 20px;
margin-top: 40px;
font-size: 14px;
}

html {
scroll-behavior: smooth;
}

/* Strapline styling */
.strapline {
font-family: 'Georgia', serif;
font-size: 1.4em;
font-weight: bold;
color: #4B2E83;
text-align: center;
margin-bottom: 10px;
background-color: #f9f5ff;
padding: 10px 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Price tag styling */
.price-tag {
font-size: 1.2em;
font-weight: bold;
color: #D7263D;
margin-top: 10px;
text-align: center;
}

/* Responsive mobile layout */
@media (max-width: 600px) {
.header-top {
flex-direction: column;
align-items: center;
text-align: center;
}

.top-info {
align-items: center;
text-align: center;
}
}
