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

:root {
    --primary-teal: #0D9488;
    --dark-teal: #134E4A;
    --light-teal: #5EEAD4;
    --dark-bg: #0F172A;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-teal);
}

.logo-tagline {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    font-style: italic;
    margin-top: -2px;
    line-height: 1;
}

.nav-logo:hover .logo-text {
    color: var(--primary-teal);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-teal);
}

.nav-cta {
    border: 2px solid var(--primary-teal);
    padding: 8px 20px;
    border-radius: 6px;
    color: var(--primary-teal) !important;
}

.nav-cta:hover {
    background: var(--primary-teal);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-teal);
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
    margin-top: 70px;
    background: var(--light-gray);
    padding: 80px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--dark-teal);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-img,
.goals-img,
.testimonial-img,
.cta-img,
.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.hero-image {
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.goals-image {
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-image {
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.cta-image {
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.article-image {
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.intro {
    padding: 160px 20px 160px;
    background: var(--white);
    position: relative;
    transform: skewY(-1deg);
    margin: -40px 0;
}

.intro .container {
    transform: skewY(1deg);
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-card {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.intro-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 12px;
}

.intro-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.carriers-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.carriers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.carrier-logo {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.carrier-logo i {
    font-size: 36px;
    color: #000000;
}

.carrier-logo span {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.carrier-logo:hover {
    border-color: var(--primary-teal);
    transform: translateY(-3px);
}

.business-goals {
    padding: 160px 20px 160px;
    background: var(--dark-teal);
    color: var(--white);
    position: relative;
    transform: skewY(1deg);
    margin: -40px 0;
}

.business-goals .goals-container {
    transform: skewY(-1deg);
}

.goals-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.goals-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.goals-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.goals-img {
    height: 400px;
}

.digital-future {
    padding: 160px 20px 160px;
    background: var(--light-gray);
    transform: skewY(-1deg);
    margin: -40px 0;
}

.digital-future .container {
    transform: skewY(1deg);
}

.digital-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.digital-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-teal);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.digital-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 25px;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.team-icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.flat-icon::before {
    content: '';
    position: absolute;
    background: var(--white);
}

.icon-chart::before {
    width: 24px;
    height: 24px;
    clip-path: polygon(0% 100%, 25% 60%, 50% 80%, 75% 40%, 100% 0%, 100% 100%);
}

.icon-laptop::before {
    width: 32px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 2px;
}

.icon-palette::before {
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.icon-phone::before {
    width: 18px;
    height: 28px;
    border: 2px solid var(--white);
    border-radius: 4px;
}

.icon-document::before {
    width: 22px;
    height: 28px;
    border: 2px solid var(--white);
    border-radius: 2px;
    clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 0 100%);
}

.icon-rocket::before {
    width: 16px;
    height: 28px;
    clip-path: polygon(50% 0%, 70% 30%, 100% 100%, 60% 80%, 50% 100%, 40% 80%, 0% 100%, 30% 30%);
}

.icon-gear::before {
    width: 24px;
    height: 24px;
    border: 3px solid var(--white);
    border-radius: 50%;
}

.icon-package::before {
    width: 24px;
    height: 24px;
    border: 2px solid var(--white);
    border-radius: 3px;
}

.icon-megaphone::before {
    width: 24px;
    height: 20px;
    clip-path: polygon(0% 50%, 40% 20%, 40% 0%, 100% 0%, 100% 100%, 40% 100%, 40% 80%);
}

.team-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 5px;
}

.team-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.stats-banner {
    padding: 160px 20px 160px;
    background: var(--dark-bg);
    color: var(--white);
    position: relative;
    clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
    margin-top: -40px;
    margin-bottom: 0;
}

.stats-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    font-size: 64px;
    font-weight: 600;
    color: var(--light-teal);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.stat-desc {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.testimonial-section {
    padding: 160px 20px 160px;
    background: var(--white);
    position: relative;
    transform: skewY(-1deg);
    margin: -40px 0;
}

.testimonial-section .testimonial-container {
    transform: skewY(1deg);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-img {
    height: 500px;
}

.testimonial-card-featured {
    padding: 50px;
    background: var(--light-gray);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
}

.services {
    padding: 160px 20px 160px;
    background: var(--light-gray);
    transform: skewY(1deg);
    margin: -40px 0;
}

.services .container {
    transform: skewY(-1deg);
}

.section-heading {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: var(--dark-teal);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 60px;
}

.section-heading-light {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: var(--white);
}

.section-subtitle-light {
    text-align: center;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card .flat-icon,
.cta-feature .flat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.cta-feature .flat-icon {
    width: 64px;
    height: 64px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 160px 20px 160px;
    background: var(--white);
    position: relative;
    transform: skewY(-1deg);
    margin: -40px 0;
}

.cta-section .cta-container {
    transform: skewY(1deg);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    text-align: left;
}

.cta-feature-text {
    flex: 1;
}

.cta-feature-text h4 {
    margin-bottom: 8px;
}

.cta-feature-text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.fa-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
}

.service-card .fa-icon {
    margin: 0 auto 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

html {
    scroll-behavior: smooth;
}

.cta-feature h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 4px;
}

.cta-feature p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-img {
    height: 400px;
}

.articles {
    padding: 80px 20px;
    background: var(--light-gray);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    padding: 40px;
    text-align: center;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-icon-large {
    font-size: 72px;
    margin-bottom: 20px;
}

.article-img {
    height: 250px;
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 15px;
}

.article-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.article-link:hover {
    color: var(--dark-teal);
}

.contact {
    padding: 160px 20px 160px;
    background: var(--dark-teal);
    color: var(--white);
    position: relative;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
    margin-top: -40px;
    margin-bottom: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    text-align: left;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-teal);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--light-teal);
}

.contact-hours {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.8;
}

.hiring-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-teal);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.form-group textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.footer {
    padding: 40px 20px;
    background: var(--dark-bg);
    color: var(--white);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-teal);
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--light-teal);
}

.footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 12px;
    font-style: italic;
}

/* Scroll Animations */
.animation-element {
    opacity: 0;
    position: relative;
}

.animation-element.slide-left {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
    transition: all 700ms ease;
}

.animation-element.slide-left.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.animation-element.slide-right {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
    transition: all 700ms ease;
}

.animation-element.slide-right.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.animation-element.slide-up {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: all 700ms ease;
}

.animation-element.slide-up.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Accessibility: respect user preferences for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animation-element {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 10px;
        font-size: 18px;
    }
    
    .hero-container,
    .goals-container,
    .digital-grid,
    .testimonial-container,
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-heading,
    .section-heading-light {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .goals-content h2,
    .cta-content h2 {
        font-size: 36px;
    }
    
    .services-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icon-placeholder {
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        text-align: center;
        align-items: center;
    }
    
    .contact-item {
        text-align: center;
    }
    
    .hiring-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box h2 {
        font-size: 48px;
    }
    
    .testimonial-card-featured {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .hiring-form {
        padding: 25px 15px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
    }
}
