﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-logo {
    margin-right: 1rem;
    width: 100%;
    max-width: 100%;
    height: 400px;
    margin-top: -50px;
    margin-right: 100px;
    margin-left: -100px;
    margin-bottom: -50px;
    /* or */
    /*transform: translate(-50px);*/
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 400px;
}

.logo-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 300px;
}

.logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.runner-icon {
    width: 120px;
    height: 120px;
    background: #1e3a8a;
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
    border: 4px solid #dc2626;
}

    .runner-icon::before {
        content: "🏃";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        color: white;
    }

.logo-text {
    text-align: center;
}

.logo-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-size: 1.2rem;
    color: #1e3a8a;
    font-weight: bold;
    letter-spacing: 2px;
}

.get-started-btn {
    background-color: #dc2626;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .get-started-btn:hover {
        background-color: #b91c1c;
    }

.services-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.services-list {
    list-style: none;
}

.service-item {
    display: flex;
    align-items: flex-start;
    /*margin-bottom: 15px;*/
    padding: 10px 0;
}

.service-icon {
    width: 24px;
    height: 24px;
    background-color: #1e3a8a;
    color: white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
}

.service-text {
    color: #666;
    font-size: 1rem;
}

.team-section {
/*    margin-bottom: 50px;*/
}

.team-list {
    list-style: none;
}

.team-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
}

.team-icon {
    width: 24px;
    height: 24px;
    background-color: #1e3a8a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 12px;
}

.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 40px 20px;
    /*margin-top: 50px;*/
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-text {
    flex: 1;
    min-width: 300px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info {
    flex: 0 0 auto;
    min-width: 250px;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-decoration: underline;
}

.contact-details p {
    margin-bottom: 5px;
    font-size: 1rem;
    
}

    .contact-details p a {
        color: white;
    }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .logo-title {
        font-size: 2.5rem;
    }

    .hero-section {
        text-align: center;
    }

    .footer-content {
        text-align: center;
    }

    .contact-info {
        min-width: auto;
    }
}
