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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hidden {
    display: none;
}

.nav-asymmetric {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 40px;
    background-color: #f8f9fa;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-right: auto;
}

.nav-disclosure {
    position: absolute;
    top: 8px;
    right: 40px;
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
}

.ad-label {
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-top: 10px;
    width: 100%;
}

.nav-links a {
    font-size: 16px;
    color: #34495e;
    font-weight: 500;
}

.hero-asymmetric {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    position: relative;
    background-color: #e8f4f8;
    overflow: hidden;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #34495e;
}

.hero-image-overlap {
    width: 60%;
    position: absolute;
    right: -5%;
    top: 10%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #bdc3c7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    opacity: 1;
}

.intro-irregular {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 100px 60px 100px 100px;
    gap: 60px;
    background-color: #ffffff;
}

.intro-text-left {
    flex: 1;
    min-width: 300px;
}

.intro-text-left h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-text-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image-right {
    flex: 1;
    min-width: 300px;
    margin-left: auto;
}

.intro-image-right img {
    border-radius: 8px;
    background-color: #bdc3c7;
}

.citation {
    color: #3498db;
    font-size: 16px;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
    opacity: 1;
}

.problem-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.problem-overlay {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.problem-overlay h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.symptoms-list {
    list-style: none;
    margin-bottom: 32px;
}

.symptoms-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
}

.symptoms-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.problem-statement {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.services-offset {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.services-intro-diagonal {
    max-width: 700px;
    margin-bottom: 60px;
    padding-left: 60px;
    border-left: 6px solid #3498db;
}

.services-intro-diagonal h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro-diagonal p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card.offset-1 {
    margin-top: 0;
}

.service-card.offset-2 {
    margin-top: 40px;
}

.service-card.offset-3 {
    margin-top: 20px;
}

.service-card.offset-4 {
    margin-top: 60px;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #bdc3c7;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #7f8c8d;
    flex: 1;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.trust-building-overlap {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
    min-width: 350px;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #34495e;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #7f8c8d;
}

.trust-background {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.trust-background img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #bdc3c7;
}

.form-section-diagonal {
    padding: 100px 40px;
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-1deg);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 18px;
    margin-bottom: 36px;
    color: #7f8c8d;
}

.contact-form {
    transform: rotate(1deg);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.8;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
}

.references-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.references-list a {
    color: #3498db;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 15px;
    color: #bdc3c7;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.about-hero-offset {
    padding: 100px 60px 80px 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.about-content-irregular {
    max-width: 800px;
}

.about-content-irregular h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-content-irregular p {
    font-size: 22px;
    line-height: 1.6;
}

.about-story {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.story-text-overlap {
    flex: 1;
    min-width: 350px;
}

.story-text-overlap h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-text-overlap p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.story-image-diagonal {
    flex: 1;
    min-width: 350px;
    transform: rotate(2deg);
}

.story-image-diagonal img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #bdc3c7;
}

.values-section-irregular {
    padding: 100px 60px;
    background-color: #ffffff;
}

.values-section-irregular h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.value-item.offset-left {
    transform: translateY(-20px);
}

.value-item.offset-center {
    transform: translateY(20px);
}

.value-item.offset-right {
    transform: translateY(-10px);
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #34495e;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #7f8c8d;
}

.team-approach {
    padding: 80px 60px;
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.cta-about {
    padding: 80px 40px;
    text-align: center;
    background-color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #7f8c8d;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    opacity: 1;
}

.services-hero {
    padding: 100px 60px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 22px;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-card.asymmetric-1 {
    transform: rotate(-0.5deg);
}

.service-detail-card.asymmetric-2 {
    transform: rotate(0.5deg);
}

.service-detail-card.asymmetric-3 {
    transform: rotate(-0.3deg);
}

.service-detail-card.asymmetric-4 {
    transform: rotate(0.4deg);
}

.service-detail-card.asymmetric-5 {
    transform: rotate(-0.6deg);
}

.service-detail-card.asymmetric-6 {
    transform: rotate(0.3deg);
}

.service-detail-image {
    flex: 1;
    min-width: 350px;
    background-color: #bdc3c7;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-detail-content {
    flex: 1;
    min-width: 350px;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
    display: block;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #34495e;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #7f8c8d;
}

.services-cta-section {
    padding: 80px 40px;
    text-align: center;
    background-color: #ffffff;
}

.services-cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #7f8c8d;
}

.contact-hero {
    padding: 100px 60px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 22px;
}

.contact-content-asymmetric {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 60px;
    gap: 80px;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.contact-info-offset {
    flex: 1;
    min-width: 350px;
}

.contact-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #7f8c8d;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-image-diagonal {
    flex: 1;
    min-width: 350px;
    transform: rotate(1deg);
}

.contact-image-diagonal img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #bdc3c7;
}

.location-info {
    padding: 80px 60px;
    background-color: #ffffff;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.contact-cta {
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #7f8c8d;
}

.thanks-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.thanks-content {
    flex: 1;
    min-width: 400px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 32px;
    color: #34495e;
}

.thanks-details {
    padding: 20px;
    background-color: #e8f8f5;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 30px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.steps-list {
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 16px;
    flex-shrink: 0;
}

.step-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-top: 6px;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    opacity: 1;
}

.btn-secondary {
    padding: 16px 32px;
    background-color: #95a5a6;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    opacity: 1;
}

.thanks-image {
    flex: 1;
    min-width: 350px;
}

.thanks-image img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #bdc3c7;
}

.legal-page {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: #34495e;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #34495e;
}

.legal-content a {
    color: #3498db;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 15px 20px;
    }

    .nav-disclosure {
        position: static;
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        gap: 20px;
    }

    .hero-content-offset {
        width: 100%;
        padding: 60px 30px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-image-overlap {
        position: static;
        width: 100%;
        margin-top: 40px;
    }

    .intro-irregular {
        padding: 60px 30px;
    }

    .service-card {
        width: 100%;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4 {
        margin-top: 0;
    }

    .form-container {
        padding: 30px;
        transform: none;
    }

    .contact-form {
        transform: none;
    }

    .service-detail-card {
        transform: none !important;
    }

    .thanks-content {
        min-width: 100%;
    }

    .legal-content {
        padding: 40px 30px;
    }
}