body {
    margin: 0;
    font-family: 'Satoshi', sans-serif; /* Apply Satoshi font */
    overflow: hidden; /* Hide scrollbar for smooth scrolling on all devices */
    color: white; /* Set default text color to white */
}

@media (min-width: 1024px) {
    body {
        overflow: hidden;
    }
}

.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0; /* Removed horizontal padding from here */
    box-sizing: border-box;
    position: relative;
}

.home {
    background-color: #6073DB; /* Updated color for Home section */
}

.about {
    background-color: #829883; /* Updated color for About section */
}

.services {
    background-color: #093824; /* Updated color for Services section */
    color: white;
}

.contact {
    background-color: #BF4E30; /* Updated color for Contact section */
    color: white; /* Changed text color to white */
}

.content {
    width: 100%; /* Removed max-width */
    height: 100%;
    position: relative;
    /* No padding here, padding will be handled by title/description containers */
}

.title-container {
    position: absolute;
    top: 25%; /* Moved titles further down */
    left: 10%;
    width: auto;
    text-align: left;
    transform: translateY(-50%); /* Re-added for vertical centering */
}

.description-container {
    position: absolute;
    bottom: 15%; /* Keep this to set the distance from the bottom */
    right: 10%;
    max-width: 40%;
    text-align: right;
    /* Removed transform: translateY(50%); to ensure strict bottom alignment */
}

.description-container a {
    color: white;
    text-decoration: underline; /* Add underline to link */
}

h1 {
    font-size: 5em;
    margin: 0;
}

p,
li {
    font-size: 1.5em; /* Slightly larger again */
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    list-style-type: none;
}

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

ul li {
    text-align: right;
}

ul li::before {
    content: '';
    display: none;
}

.section-navigation {
    position: fixed;
    right: 20px; /* Slightly closer to the edge */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px; /* Smaller gap between dots */
    z-index: 1000;
}

.nav-dot {
    width: 8px; /* Smaller size */
    height: 8px;
    background-color: rgba(0, 0, 0, 0.2); /* Softer, transparent black for inactive */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-dot.active {
    background-color: rgba(0, 0, 0, 0.6); /* Darker, more prominent black for active */
    transform: scale(1.5); /* Slightly increased scale for a more noticeable active state */
}

/* Responsive styles for tablets */
@media (max-width: 1024px) {
    h1 {
        font-size: 4em;
    }

    p, li {
        font-size: 1.3em;
    }
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 10%;
        text-align: left;
    }

    .title-container,
    .description-container {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        text-align: left;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }

    .title-container {
        margin-bottom: 2em;
    }

    h1 {
        font-size: 3em;
    }

    p,
    li {
        font-size: 1.2em;
    }

    ul li {
        text-align: left;
    }
} 