.business-hero {
    background: linear-gradient(135deg, rgba(26, 151, 205, .8), rgba(0, 0, 0, .8));
    padding: 180px 0 100px;
    color: #fff;
    text-align: center
}

.business-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px
}

.business-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px
}

.pricing-section {
    padding: 100px 0;
    background: #f9f9f9
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px
}

.pricing-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8
}

.pricing-details {
    text-align: center
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05)
}

.price-table th {
    background: var(--dark-color);
    color: #fff;
    padding: 15px;
    text-align: left
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: var(--text-light)
}

.price-table tr:nth-child(even) {
    background: #f9f9f9
}

.price-table .highlight {
    color: var(--secondary-color);
    font-weight: 500
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: #fff
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: center
}

.contact-info {
    flex: 1
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: .9
}

.contact-methods {
    margin-top: 40px
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--secondary-color)
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px
}

.contact-text a {
    color: #fff;
    opacity: .9;
    transition: var(--transition)
}

.contact-text a:hover {
    color: var(--secondary-color);
    opacity: 1
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color)
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition)
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, .2)
}

textarea.form-control {
    min-height: 120px;
    resize: vertical
}

.btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: var(--transition)
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px)
}

@media(max-width:992px) {
    .contact-container {
        flex-direction: column
    }

    .contact-info,
    .contact-form {
        width: 100%
    }
}

@media(max-width:768px) {
    .business-hero h1 {
        font-size: 2.5rem
    }

    .pricing-header h2 {
        font-size: 2rem
    }
}
