@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    background-color: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
    padding: 0 20px;
    box-sizing: border-box;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.logo {
    height: 80px;
    max-width: 100%;
}

.content {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(180, 156, 81, 0.15);
    border: 2px solid #D4AF37;
    max-width: 900px;
    width: 100%;
    color: #1a1a1a;
    box-sizing: border-box;
    margin-bottom: 60px;
    position: relative;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    border-radius: 12px 12px 0 0;
}

.strategic-section {
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.strategic-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #D4AF37;
    border-radius: 1px;
}

.value-proposition {
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.value-proposition::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}

.contact-section {
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}

.social-section {
    padding: 20px 15px 20px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 6px;
    margin-top: 15px;
}

.services-section {
    width: 100%;
    margin-top: 15px;
}

.services-section p {
    padding-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.service-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 22px 20px;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
    box-shadow: 0 3px 12px rgba(180, 156, 81, 0.12);
    transition: all 0.3s ease;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37 0%, transparent 100%);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(180, 156, 81, 0.2);
    border-left-color: #F4D03F;
}

.service-title {
    color: #D4AF37;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-description {
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
    font-weight: 400;
    flex-grow: 1;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 18px;
    color: #D4AF37;
}

h2 {
    color: #1a1a1a;
    font-size: 1.5em;
    margin-bottom: 15px;
    position: static;
}

p {
    font-size: 1.1em;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.5;
    font-weight: 400;
}

.services-intro {
    font-size: 1em;
    color: #555;
    margin-bottom: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

.social-media {
    margin-top: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-media a {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
}

.social-media a:hover {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.15);
}

.social-media img {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

footer {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    color: #333;
    padding: 18px;
    text-align: center;
    height: auto;
    box-sizing: border-box;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(212, 175, 55, 0.15);
}

footer p {
    margin: 5px 0;
    font-size: 1em;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.spacing-20 {
    padding-bottom: 20px;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    header {
        padding: 45px 20px;
    }

    .content {
        max-width: 1000px;
        padding: 50px 45px;
    }

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

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.15em;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 1em;
        font-weight: 400;
    }

    h1 {
        font-size: 2.5em;
        margin-bottom: 22px;
    }

    h2 {
        font-size: 1.7em;
        margin-bottom: 18px;
    }

    p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .services-intro {
        font-size: 1.1em;
        margin-bottom: 22px;
    }

    .social-media {
        margin-top: 18px;
        gap: 15px;
    }

    .social-media img {
        width: 34px;
        height: 34px;
    }

    .social-section {
        padding: 25px 20px 25px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1023px) {
    .content {
        max-width: 750px;
        padding: 40px 35px;
        margin: 0 20px 30px;
    }

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

    .service-card {
        padding: 20px 18px;
    }

    .social-section {
        padding: 22px 18px 22px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    header {
        padding: 30px 20px;
    }

    .content {
        padding: 30px 20px;
        max-width: calc(100% - 40px);
        margin: 0 20px 25px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 18px 16px;
    }

    .service-title {
        font-size: 1.05em;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .service-description {
        font-size: 0.9em;
        font-weight: 400;
    }

    .strategic-section,
    .value-proposition,
    .contact-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .social-section {
        padding: 18px 15px 18px;
    }

    .logo {
        height: 60px;
    }

    h1 {
        font-size: 1.8em;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 1.3em;
        margin-bottom: 12px;
    }

    p {
        font-size: 1em;
        margin-bottom: 14px;
    }

    .services-intro {
        font-size: 0.95em;
        margin-bottom: 16px;
    }

    .social-media {
        margin-top: 12px;
        gap: 10px;
    }

    .social-media img {
        width: 28px;
        height: 28px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    header {
        padding: 25px 15px;
    }

    .content {
        margin: 0 15px 20px 15px;
        padding: 25px 15px;
        max-width: calc(100% - 30px);
    }

    .service-card {
        padding: 16px 14px;
    }

    .strategic-section,
    .value-proposition,
    .contact-section {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .social-section {
        padding: 15px 12px 15px;
    }

    h1 {
        font-size: 1.6em;
        margin-bottom: 14px;
    }

    h2 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    p {
        font-size: 0.95em;
        margin-bottom: 12px;
    }

    .services-intro {
        font-size: 0.9em;
        margin-bottom: 14px;
    }

    .social-media img {
        width: 26px;
        height: 26px;
    }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
    .content {
        margin: 0 10px 15px 10px;
        padding: 20px 10px;
        max-width: calc(100% - 20px);
    }

    .service-card {
        padding: 14px 12px;
    }

    .strategic-section,
    .value-proposition,
    .contact-section {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .social-section {
        padding: 12px 10px 12px;
    }

    h1 {
        font-size: 1.4em;
    }

    h2 {
        font-size: 1.1em;
    }

    p {
        font-size: 0.9em;
    }
}
