:root {
    --bg-color: #bbe2ed;
    --text-color: #181e20;
    --white: #ffffff;
    --accent: #dff4ff;
    --banner-height: 44px;
}

* {
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

p {
	font-size: 1.2rem;
}

.site-banner {
    min-height: var(--banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #181e20;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    position: absolute;
    top: var(--banner-height);
    width: 100%;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 900;
    font-size: 1.5rem;
}

.logo img {
    width: 40px;
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.button {
    display: inline-block;
    background-color: var(--accent);
    color: black;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease;
}

.button:hover {
    transform: scale(1.10);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
    padding: 150px 5% 80px;
    min-height: 80vh;
}

.hero-text {
    max-width: 1000px;
}

.hero-text h1 {
	display: flex;
  	justify-content: center;
  	align-items: center;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}


.section-container {
    display: flex;
	display: flex;
   	align-items: center;
    justify-content: center;
	text-align: center;
	padding: 80px 0;
    width: 100%;
    max-width: none;
    margin: 0;
    
}

#portfolio .card {
    width: 100%;
    border-radius: 0;
}

.card {
    background: rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
}

.image-box {
    width: 100%;
    height: 200px;
    background: var(--white);
    margin: 20px 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section {
    padding: 80px 5%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

input, select, textarea {
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
}

textarea {
    grid-column: span 2;
    border-radius: 20px;
    height: 150px;
    resize: none;
}

.submit-btn {
    grid-column: span 2;
    background-color: var(--accent);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.9;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .hero, .section-container, form {
        flex-direction: column;
    }
    .hero-image-placeholder { width: 100%; }
    header { position: relative; top: 0; padding: 20px; }
    nav ul { display: none; }
}

.services-details {
    display: flex;
    gap: 40px;
    padding: 80px 5%;
    background: rgba(255, 255, 255, 0.2);
}

.service-section h1 {
    display: flex;
  	justify-content: center;
  	align-items: center;
	text-align: center;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.service-section h2 {
	display: flex;
  	justify-content: center;
  	align-items: center;
	text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-section p {
	display: flex;
  	justify-content: center;
  	align-items: center;
	text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
}

.audio-player {
    background: var(--white);
    padding: 15px;
    border-radius: 20px;
	width: min(800px, 100%);
    margin: 15px auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.audio-player label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

audio {
    width: 100%;
    height: 35px;
}

@media (max-width: 900px) {
    .services-details {
        grid-template-columns: 1fr;
        text-align: center;
    }
}