* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Header */
header {
    background-color: rgb(116, 61, 61);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    max-width: 150px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
}

/* Navbar */
nav.navbar {
    background-color: #444;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

.nav-links a:hover {
    background-color: #00695c;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive menu */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        background-color: #444;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
.container {
      display: flex;
      flex-direction: row;
      min-height: 100vh;
    }

    .column {
      padding: 20px;
      color: rgb(12, 2, 2);
    }

    /* Left column - 20% width */
    .left {
     
      flex: 0 0 20%; /* Fixed width of 20% */
    }

    /* Middle column - 60% width */
    .middle {
      background-color: #d7e7f3;
      flex: 0 0 60%; /* Fixed width of 60% */
    }

    /* Right column - 20% width */
    .right {
     
      flex: 0 0 20%; /* Fixed width of 20% */
    }

    /* Make it responsive: stack columns on small screens */
    @media(max-width: 768px) {
      .container {
        flex-direction: column;
      }
      .left, .middle, .right {
        flex: 1 1 100%; /* Full width on small screens */
      }
    }