* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: linear-gradient(135deg, #35424a, #e8491d);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-family: 'Montserrat', sans-serif;
}

header p {
    font-size: 1.2em;
}

.cta-button {
    background: #ffffff;
    color: #35424a;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background: #e8491d;
    color: #ffffff;
}

nav {
    background: #35424a;
    color: #ffffff;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e8491d;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

section {
    padding: 20px;
    margin: 20px 0;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #35424a;
    border-bottom: 2px solid #e8491d;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: #35424a;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}

#contact {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

#contact h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.contact-card a {
    text-decoration: none;
    color: #0073b1; /* LinkedIn Blue as default */
    font-weight: 600;
}

.contact-card a:hover {
    color: #005582;
}

