* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    
    background-color: #d5e3e3;
    color: #2C3E50;
    line-height: 1.6;
    font-size: 16px;
}

header {
    background-color: #346a83;
    color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    text-shadow: #2b2343 1px 1px 2px;
    font-size: 24px;
    font-family: 'Courier New', 'Times New Roman', monospace;
    font-weight: bold;
    letter-spacing: 1px;    
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 2px;

}

.logo-icon {
    width: auto;
    height: 100px;
}


.logo-img img {
    height: 3px;
    margin-right: 10px;
}

.logo-text a {
    font-size: 24px;
    text-decoration: none;
    color: #F1C40F;
    font-weight: bold;
}


.nav-container {
    background-color: #67b3c0;
}

nav {
    display: flex; 
    align-items: center;
    padding: 10px 30px;
    justify-content: space-around;
}


nav ul {
    display: flex; 
    flex-wrap: wrap;   
    list-style: none;
    justify-content: space-around;
    flex-grow: 1;
}


nav ul li {
    margin: 0 15px; 
}

nav a {    
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;    
    text-decoration: none;
    font-weight: 500;
}nav a:hover {
    transform: scale(1.2);
    color: #4c4479;
}

.hero {
    background-image: linear-gradient(rgba(49, 193, 233, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #d8b31e;
    color: #76610d;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.03 ease, background-color 0.3s;
}.btn:hover {
    transform: scale(1.05);
    background-color: #c2d6e0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #70b2db;
    color: #d4bbff;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background-color: #2f3a44;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    color: #d4bbff;
}

.card-content p {
    margin-bottom: 15px;
    color: #d8d8d8;
}

.about-section {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-img {
    flex: 1;
    height: 400px;
    background-color: #ddd;
    border-radius: 10px;
    background-image: url('/api/placeholder/500/400');
    background-size: cover;
    background-position: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: 20px;
    color: #60468e;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    color: #d8d8d8;    
}

.service-item {
    background-color: #3c4756;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(19, 19, 19, 0.2);
}

.service-item h3 {
    color: #d4bbff;
    margin-bottom: 15px;
}

.order-form {
    background-color: #95aebb;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(11, 11, 11, 0.2);
    max-width: 800px;
    margin: 0 auto 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #8e89a4;
    border-radius: 5px;
    font-size: 16px;
    background-color: #7789aa;
    color: #e8e6f0;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

footer {
    background-color: #233b43;
    color: #e8e6f0;
    text-align: center;
    padding: 30px 0;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }

    .about-img {
        height: 300px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}