body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

nav a:hover {
    color: #66fcf1;
}

/* Sub-navigation styling as a rounded box */
.sub-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    padding-bottom: 1px;
}

.sub-nav ul {
    list-style: none;
    display: flex;
    justify-content: center; 
    gap: 40px;
    margin: 0;
    padding: 10px 40px;
    background-color: #0b0c10;
    border-radius: 20px;
    width: fit-content;
    min-width: 400px;
}


.sub-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sub-nav a:hover {
    color: #66fcf1;
}

.content-section {
    text-align: center;
    color: white;
    padding: 40px 20px;
    font-size: 18px;
    background-color: #000000; 
    padding-bottom: 1px;
    padding-top: 1px;
}

footer {
    background-color: #000000; 
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 16px;
}
/* Packages section layout */
#packages {
    text-align: center;
    color: white;
    padding: 40px 20px;
}

#packages h2 {
    color: white;
    margin-bottom: 30px;
}

/* Two boxes side by side */
.packages-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap; 
}

.package-box {
    background-color: #1a1a1a;
    border: 2px solid white;
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-box h3 {
    color: white;
    margin-bottom: 10px;
}

.package-box p {
    color: #d1d1d1;
    font-size: 16px;
}

/* Subtle hover effect */
.package-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
}

/* Bullet list styling inside packages */
.package-box ul {
    list-style-type: disc;
    text-align: left; 
    margin: 10px 0 0 20px; 
    padding: 0;
}

.package-box li {
    color: #d1d1d1;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
}

/* Main navigation  */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b0c10;
    padding: 10px 40px;
    gap: 20px; 
}

/* Logo style */
.logo {
    height: 45px; 
    width: auto;
}

/* Navigation list styling */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

/* Navigation links */
.main-nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #66fcf1;
}
/* Footer logo */
.footer-logo {
    height: 45px; 
    width: auto;
    margin-top: 10px; 
}

/* Meet the Team section */
.team-section {
    text-align: center;
    color: white;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-direction: column;

     display: flex;
    flex-direction: column;
    gap: 40px; 
    color: white; 
}

.team-section h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 40px;
}

.team-member {
    margin-bottom: 50px;
     flex-direction: column;

       display: flex;
    flex-direction: column;  
    align-items: center;     
    text-align: center;      
    gap: 12px;               
    max-width: 600px;        
    margin: 0 auto;          
}


.team-member h2 {
  display: inline-block; 
  border-bottom: 2px solid whitesmoke;
  color: white;
  font-size: 24px;
  margin-bottom: 8px;
}

.team-member h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.team-member p {
    color: #d1d1d1;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}
/* Login icon */
.login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.login-icon .icon {
    width: 30px;
    height: 30px;
    stroke: white;
    transition: stroke 0.3s ease;
}

.login-icon:hover .icon {
    stroke: #ffffff;
}
p {
    color: #d1d1d1;      
    font-size: 16px;        
    line-height: 1.6;       
    text-align: center;     
    margin: 16px auto;      
    max-width: 700px;       
    font-family: Arial, Helvetica, sans-serif; 
}
/* Footer links styling */
.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Footer disclaimer */
.footer-disclaimer {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.5;
    max-width: 800px;
    margin: 15px auto 0 auto;
    text-align: center;
}
.headshot{
    height: 250px; 
    margin-top: 20px;
    width: auto;
    border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
  filter: grayscale(30%) contrast(1.05) saturate(1.1) brightness(1.05);
  transition: all 0.3s ease;
   flex-direction: column;
}
