* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fefefe;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 100vw;
    margin: auto;
    padding: 0px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffe9d9;
    padding: 10px 20px;
    height: 10vh;
}

.logo img {
    height: 70px;
    width: 173px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #f04e23;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 5px;
}

.nav-link.active {
    border-bottom: 2px solid #f04e23;
    font-weight: 600;
}

.nav-link:hover {
    text-decoration: underline;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon img,
.profile-icon img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

main {
    padding: 20px;
    min-height: 80vh;
    background-color: #fff;
    background-image: url('/Logos/6943.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.contact-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    background: rgba(255, 233, 217, 0.8);
    border-radius: 8px;
    padding: 30px;
}

.info-header h3 {
    background-color: orange;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-icon img {
    width: 30px;
    height: 30px;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.enquiry-form {
    flex: 1;
    background: rgba(255, 233, 217, 0.8);
    border-radius: 8px;
    padding: 30px;
}

.form-header h3 {
    background-color: orange;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.9);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f04e23;
}

.form-group textarea {
    resize: vertical;
    font-family: Arial, sans-serif;
}

.submit-btn {
    background-color: orange;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #f04e23;
}

footer {
    margin-bottom: 0px;
    padding: 15px 20px;
    height: 10vh;
    background-color: #ffe9d9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.footer-left,
.footer-center,
.footer-right {
    margin-top: 0px;
}

.footer-section p {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-left .social-links img {
    width: 25px;
    margin: 0 5px;
}

.footer-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.footer-center a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.footer-center a:hover {
    color: #f04e23;
}

.footer-right p {
    margin-bottom: 10px;
    font-weight: bold;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.footer-right img {
    width: 100px;
    margin: 5px 5px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    header {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    footer {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .footer-left {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .enquiry-form {
        padding: 20px;
    }
    
    .info-header h3,
    .form-header h3 {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon img {
        width: 25px;
        height: 25px;
    }
    
    .user-actions {
        gap: 10px;
    }
}