* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}


/* Header */
.header {
    background: #000;
    color: white;
    padding: 4rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: bold;
}

.business-council {
    font-size: 0.9rem;
    margin-left: 0.5rem;
    border-left: 1px solid #666;
    padding-left: 0.5rem;
}

.header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #c5a632;
    color: white;
}

.btn-primary:hover {
    background: #b8981e;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.btn-outline:hover {
    background: #333;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #c5a632;
}

/* Profile Header */
.profile-header {
    background: #ffffff;
    padding:  0 2rem 3rem;
    text-align: center;
    /* position: absolute; */
}

.profile-container {
    /* max-width: 800px; */
    gap: 2rem;
    display: flex;
    justify-content: center;
    /* text-align: left; */
    /* align-items: center; */
    margin: 0 auto;
}

.profile-info {
    background-color: #F4F4F4;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 500px;
}

.profile-image {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    margin: -90px auto 1.5rem;
    border: 6px solid white;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 200;
}

.profile-name {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #000;
}

.profile-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.company-name {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111;
    transition: color 0.2s ease-in-out;
    border: none;
    width: auto;
    height: auto;
    padding: 0;
}

.social-link:hover {
    color: #000;
}

/* Skills */
.skills-section {
    text-align: left;
    margin-bottom: 2rem;
}

.skills-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    font-weight: bold;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.skill-tag {
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    text-align: left;
    margin-bottom: 2rem;
}

.about-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-text {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

/* Hide nav bar to match screenshot */
.nav-bar {
    display: none;
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #000;
}

/* Published Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-type {
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000;
    text-decoration: none;
    display: block;
    line-height: 1.4;
}

.article-title:hover {
    color: #c5a632;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: #333;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: #555;
}

.see-more-btn {
    text-align: center;
    margin-top: 2rem;
}

.see-more-btn button {
    background: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.see-more-btn button:hover {
    background: #333;
    color: white;
}

/* Company Details */
.company-section {
    background: white;
    margin-top: 3rem;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.company-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.company-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.company-bio-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    font-weight: bold;
}

.company-bio {
    line-height: 1.7;
    color: #555;
}

.company-bio p {
    margin-bottom: 1rem;
}

.company-bio p:last-child {
    margin-bottom: 0;
}

.company-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    height: fit-content;
}

.company-info-item {
    margin-bottom: 2rem;
}

.company-info-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.company-info-value {
    font-size: 0.95rem;
    color: #333;
}

.divider {
    height: 1px;
    background: #ddd;
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* Tablet and medium devices */
@media (max-width: 1024px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .company-section {
        padding: 2.5rem 2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 2rem 0;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .business-council {
        font-size: 1rem;
    }

    .profile-header {
        padding: 2rem 1rem 2rem;
    }

    .profile-container {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-info {
        width: 100%;
        padding: 1.5rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        margin: 1rem auto 1rem;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .profile-title {
        font-size: 1rem;
    }

    .company-name {
        font-size: 0.95rem;
    }

    .divider {
        width: 100%;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .article-card {
        max-width: 100%;
    }

    .article-image {
        height: 200px;
    }

    .article-content {
        padding: 1rem;
    }

    .article-title {
        font-size: 1.1rem;
    }

    .company-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-details h3 {
        font-size: 1.5rem;
    }

    .company-bio-title {
        font-size: 0.85rem;
    }

    .company-bio {
        font-size: 0.95rem;
    }

    .company-sidebar {
        padding: 1.5rem;
        order: 2;
    }

    .company-details {
        order: 1;
    }

    .company-sidebar .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .company-sidebar .divider {
        margin: 1.5rem 0;
    }

    .nav-container {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .skills-list {
        justify-content: flex-start;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer-container {
        padding: 0 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .header {
        padding: 1.5rem 0;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .business-council {
        font-size: 0.9rem;
        padding-left: 0.4rem;
        margin-left: 0.4rem;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-title {
        font-size: 0.9rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .article-image {
        height: 180px;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .company-section {
        padding: 1.5rem 0.75rem;
        margin-top: 1.5rem;
    }

    .company-grid {
        gap: 1.5rem;
    }

    .company-details h3 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .company-bio {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .company-sidebar {
        padding: 1.25rem;
    }

    .company-info-title {
        font-size: 0.8rem;
    }

    .company-info-value {
        font-size: 0.9rem;
    }
}