/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main page styling */
body {
    background-color: #EBEFF2;
    color: #263175;
    font-family: 'KoHo', sans-serif;
    line-height: 1.6;
    font-weight: 400;
}

/* Container for the entire page content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Header section with napkin image */
.header-section {
    position: relative;
    width: 100%;
}

/* Container for the napkin image and overlay */
.napkin-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* The napkin image styling */
.napkin-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Text that overlays on the napkin image */
.overlay-text {
    position: absolute;
    left: 151px;
    top: 450px;
    font-family: 'Syne', sans-serif;
    color: #263175;
    z-index: 10;
}

/* Company name styling */
.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* "by" text styling */
.by-line {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 5px 0;
    text-align: center;
}

/* Founder name styling */
.founder-name {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Main content area below the header */
.main-content {
    padding: 40px 20px;
    text-align: left;
    max-width: 800px;
}

/* Introduction section */
.intro-section {
    margin-bottom: 30px;
}

/* Main tagline */
.tagline {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Highlighted text within tagline */
.highlight-text {
    font-family: 'Syne', sans-serif;
    color: #BE4694;
    font-weight: 600;
}

/* Role descriptions */
.roles {
    font-size: 1.1rem;
    color: #26A69D;
    margin-bottom: 20px;
}

/* Value proposition paragraph */
.value-prop {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Section styling for audience and services */
.audience-section,
.services-section,
.about-section,
.contact-section {
    margin-bottom: 30px;
}

/* Section headings */
.audience-section h3,
.services-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #263175;
}

/* Service category containers */
.service-category {
    margin-bottom: 20px;
}

/* Service category titles */
.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #BE4694;
}

/* Paragraph styling */
p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Links styling */
a {
    color: #26A69D;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #BE4694;
    text-decoration: underline;
}

/* Contact links (emojis) */
.contact-link {
    font-size: 1.2rem;
    margin: 0 5px;
    text-decoration: none;
}

.contact-link:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* LinkedIn icon styling */
.social-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(24%) sepia(51%) saturate(1647%) hue-rotate(201deg) brightness(89%) contrast(89%);
}

.linkedin-link:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(64%) sepia(88%) saturate(1652%) hue-rotate(295deg) brightness(89%) contrast(86%);
}

/* Responsive design for tablets */
@media (max-width: 768px) {
    .overlay-text {
        left: 80px;
        top: 250px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .founder-name {
        font-size: 1.6rem;
    }
    
    .by-line {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 30px 15px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
}

/* Responsive design for mobile phones */
@media (max-width: 480px) {
    .overlay-text {
        left: 40px;
        top: 150px;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .founder-name {
        font-size: 1.3rem;
    }
    
    .by-line {
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 20px 10px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .value-prop {
        font-size: 1.1rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .overlay-text {
        left: 20px;
        top: 120px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .founder-name {
        font-size: 1.1rem;
    }
}