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

/* Header/Hero Section */
/* header {
    background-image: 
        linear-gradient(to top, #EDFAFF, rgba(251, 254, 255, 0.5)),
        url('images/background.jpg');
    background-size: cover;
    background-position: center bottom;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 75px;
    position: relative;
    overflow: hidden;
} */

header {
    background-image: 
        linear-gradient(to top, #EDFAFF, rgba(251, 254, 255, 0.5)),
        url('images/background.jpg');
    background-size: auto; /* Changed from cover to auto */
    background-position: 70% 90%;
    background-repeat: no-repeat; /* Added to prevent tiling */
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 75px;
    position: relative;
    overflow: hidden;
    
}

.header-logo {
    max-width: 200px;
    height: auto;
    margin-left: 65px; /* Adjust this value to control how far right it moves */
}

body {
    font-family: 'Jost', sans-serif; /* Changed from Arial to Jost */
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    margin: 0 auto;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #BAECFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 75px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #555;
}

/* About Section */
.about {
    text-align: center;
    padding: 80px 20%; /* Increased from 40px to 80px */
    background-color: #fff;
    min-height: 300px; /* Added minimum height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about h3 {
    margin-bottom: 30px; /* Increased from 20px to 30px */
    font-size: 1.8rem;
}

.about p {
    line-height: 1.8; /* Increased line height for better readability */
    margin-bottom: 20px; /* Added margin bottom */
    font-size: 1.1rem; /* Slightly larger text */
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-around;
    padding: 40px 10%;
    background-color: #EDFAFF;
    text-align: center;
}

.service {
    flex: 1;
    padding: 20px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3 {
    margin: 20px 0;
    font-size: 1.5rem;
}

.service::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.service:nth-child(1)::before {
    background-image: url('pictograms/accounting-icon.svg');
}

.service:nth-child(2)::before {
    background-image: url('pictograms/payroll-icon.svg');
}

.service:nth-child(3)::before {
    background-image: url('pictograms/tax-icon.svg');
}

.service:nth-child(4)::before {
    background-image: url('pictograms/approach-icon.svg');
}


/* Contact Section */
.contact {
    padding: 40px 10%;
    background-color: white;
    text-align: center;
}

.contact h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-item:nth-child(1)::before {
    background-image: url('pictograms/phone-icon.svg');
}

.contact-item:nth-child(2)::before {
    background-image: url('pictograms/email-icon.svg');
}

.contact-item:nth-child(3)::before {
    background-image: url('pictograms/ds-icon.svg');
}


/* Company Info Section */
.company-info-section {
    background-color: #EDFAFF;
    padding: 40px 10%;
    text-align: center;
    width: 100%;
}

.company-info {
    margin: 0 auto;
    max-width: 600px;
    padding: 20px 0;
    position: relative;
}

.company-info h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    padding-top: 50px; /* Add space above for the icon */
    position: relative;
}

.company-info h4::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('pictograms/info.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Notice Section */
.notice-section {
    padding: 20px 10%;
    text-align: center;
    background-color: #fff;
}

.notice {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.notice a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice a:hover {
    color: #333;
    text-decoration: underline;
}

/* AVL Page Specific Styles */
.avl-content {
    text-align: left;
    padding: 50px 10%;
}

.avl-content p, 
.avl-content ul {
    max-width: 800px;
    margin-left: 0;
    margin-bottom: 20px;
}

.avl-content ul {
    padding-left: 30px;
}

.avl-content li {
    margin-bottom: 10px;
}

.avl-content a {
    color: #0078d4;
    text-decoration: none;
}

.avl-content a:hover {
    text-decoration: underline;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}
/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    
    .services {
        flex-direction: column;
        align-items: center;
    }
    
    .service {
        margin-bottom: 30px;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .about, .approach {
        padding: 40px 10%;
    }
}