body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.hero {
    padding: 80px 0;
    background: white;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    width: 55%;
}

.hero-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-image img {
    width: 180px;
    border-radius: 50%;
}

.btn, .btn-secondary {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}

.btn {
    background: #1f3a5f;
    color: white;
}

.btn-secondary {
    border: 1px solid #1f3a5f;
    color: #1f3a5f;
}

section {
    padding: 60px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid div {
    background: white;
    padding: 20px;
    border-left: 4px solid #1f3a5f;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table td {
    padding: 15px;
    border: 1px solid #ddd;
}

footer {
    background: #1f3a5f;
    color: white;
    text-align: center;
    padding: 20px;
}
.hero-intro {
    font-size: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-image img {
        width: 160px;
        margin-top: 20px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn, .btn-secondary {
    width: 220px;
    text-align: center;
}
}.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0A66C2;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.2s ease;
}

.linkedin-btn:hover {
    opacity: 0.9;
}

.linkedin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: white;
    color: #0A66C2;
    font-weight: bold;
    border-radius: 3px;
    font-family: Arial, sans-serif;
}