/* Reset default margins and ensure box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f3f4f6;
    padding-top: 60px; /* Matches navbar height */
    color: #333;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 3px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
  margin-right: 10px;
}
.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #004080;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}
nav a:hover {
  color: #0073e6;
}


/* Container for content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section styles */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

/* Card styles for About Me content */
.card {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 12px;
}

.card p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 12px;
}

.email-link {
    color: #2563eb;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-content {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .nav-brand {
        margin-bottom: 10px;
    }

    .nav-links a {
        padding: 8px 12px;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .card h3 {
        font-size: 1.25rem;
    }
}