/* --- General Reset and Body Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* --- Limit Text Width on Larger Screens --- */
.container {
    max-width: 1200px; /* Maximum width for text containers */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Padding for small screens */
}

/* --- Art Deco Touch: Bebas Neue for Headings --- */
h1, h2 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

/* --- Header Styling --- */
header {
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
}

header .logo img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #00b4d8;
    font-weight: 400;
    font-size: 1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f77f00;
}

/* --- Subtle Orange Accent Under Navigation --- */
header:after {
    content: '';
    display: block;
    width: 90%;
    height: 1px; /* Reduced thickness */
    background-color: #f77f00; /* Orange color */
    margin-top: 10px; /* Added more spacing from the text */
}

/* --- Hero Section Adjustments with Container --- */
.hero {
    padding: 40px 0; /* Reduced padding for better balance */
    text-align: center;
    background-color: #ffffff;
}

.hero h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px; /* Reduced margin for tighter space */
    color: #666;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px; /* Limit text width */
    margin: 0 auto 20px auto; /* Center text */
}

/* --- Metallic Button Styling --- */
.metallic-button {
    background: linear-gradient(135deg, #d4d4d4, #f7f7f7, #cfcfcf, #f7f7f7, #d4d4d4);
    color: #333;
    padding: 12px 25px; /* Reduced padding for better balance */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 300;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #b0b0b0;
    transition: background 0.3s ease, transform 0.2s ease;
}

.metallic-button:hover {
    background: linear-gradient(135deg, #cfcfcf, #e0e0e0, #bdbdbd, #e0e0e0, #cfcfcf);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* --- Full-Width Section --- */
.full-width-section {
    background-color: white;
    padding: 40px 20px; /* Reduced padding */
    text-align: center;
    color: #333;
    max-width: 1200px; /* Constrain width on larger screens */
    margin: 0 auto;
}

.full-width-section h2 {
    font-size: 2.5em;
    color: #00b4d8;
    margin-bottom: 20px;
    font-weight: 400;
}

.full-width-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-weight: 300;
}

/* --- Thinner Orange Divider --- */
.orange-divider {
    height: 2px;
    background-color: #f77f00;
    margin: 30px 0; /* Reduced margin */
}

/* --- Testimonial Section Styling --- */
.testimonial-section {
    text-align: center;
    background-color: white;
    padding: 20px 20px; /* Reduced padding */
    font-style: italic;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-section blockquote {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 300;
}

.testimonial-section p {
    font-size: 1.2em;
    color: #f77f00;
    margin-top: 5px;
    font-weight: 400;
}

/* --- Centered Wings Logo --- */
.centered-logo {
    text-align: center;
    margin: 20px 0; /* Reduced spacing */
}

.centered-logo img {
    max-width: 200px;
    opacity: 0.8;
}

.centered-logo img:hover {
    opacity: 1;
}

/* --- Footer --- */
footer {
    background-color: #f2f2f2;
    padding: 30px 20px; /* Reduced padding */
    text-align: center;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    display: inline-block;
    margin: 0 10px;
}

footer ul li a {
    text-decoration: none;
    color: #00b4d8;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #f77f00;
}

footer p {
    margin-top: 20px;
    color: #666;
    font-weight: 300;
}
