/* Font loading optimization */
@font-face {
    font-family: 'Archivo';
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
    color: #000;
    min-height: 100vh;
    font-display: swap;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 99, 99, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin: 0;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav a {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #636363;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #FF6B9D;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6B9D;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    max-width: 1920px;
    padding-top: 80px;
    margin: 0 auto;
}

/* Header Section */
.header-section {
    position: relative;
    top: 157px;
    width: 996px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 42px;
    margin: 0 auto 200px auto;
}

.profile-image {
    width: 115px;
    height: 115px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Main Title */
.main-title h1 {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1.1;
    color: #000;
    margin: 0;
}

.subtitle {
    font-weight: 400;
}

.typing-text {
    position: relative;
    color: #fcabc8;
}

.typing-text::after {
    content: '|';
    color: #FF6B9D;
    font-weight: 300;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Description */
.description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
    max-width: 800px;
}

.description p {
    white-space: normal;
}

.muted {
    color: #ffabc8;
}

/* Available for work button and social links container */
.availability-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Available for work button */
.availability-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 144, 160, 0.6);
    border-radius: 400px;
    box-shadow: 0px 0px 6px 0px rgba(255, 182, 193, 0.8);
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #d4255f;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    transform: translateY(-1px);
}

.availability-button:hover {
    box-shadow: 0px 0px 8px 0px rgba(255, 182, 193, 1);
    transform: translateY(-2px);
    border-color: rgba(255, 144, 160, 0.8);
    color: #c41e5a;
}

.heart-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-icon svg {
    transition: transform 0.2s ease;
}

.availability-button:hover .heart-icon svg {
    transform: scale(1.1);
}

/* Social links */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: #000000;
    transition: color 0.3s ease;
}

.social-link:hover .social-icon svg {
    color: #333333;
}

/* Skills Section */

.skills-section {
    position: relative;
    top: 100px;
    width: 1240px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px auto 40px auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 0;
}

.skill-card {
    background-color: #ffffff;
    border: 1px solid rgba(99, 99, 99, 0.2);
    border-radius: 8px;
    padding: 32px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: fit-content;
}

.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.1);
}

.skill-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
}

.tool-logos {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.tool-logos svg,
.tool-logos img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}
.tool-logos img[alt="Figma"] {
    width: 46px;
    height: 46px;
}

.tool-logos svg:hover,
.tool-logos img:hover {
    transform: scale(1.1);
}

.skill-card h3 {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #000000;
    margin: 0;
}

.skill-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #636363;
    margin: 0;
    flex-grow: 1;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag {
    background-color: rgba(255, 107, 157, 0.1);
    color: #FF6B9D;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.2s ease;
}

.tag:hover {
    background-color: rgba(255, 107, 157, 0.2);
    transform: scale(1.05);
}


/* Projects Section */
.projects-section {
    position: relative;
    top: 200px;
    width: 1240px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto 100px auto;
}

/* Projects 서브텍스트 */
.projects-subtitle {
    text-align: left;
    margin: -20px 0 20px 0;
}

.projects-subtitle p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 24px;
    color: #636363;
    font-style: italic;
    margin: 0;
}

.section-title {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #000;
    top-margin: 0;
    bottom-margin: 10;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: scale(1.01);
}

.project-card {
    background-color: #fffefe;
    border: 1px solid rgba(99, 99, 99, 0.2);
    border-radius: 4px;
    height: 272px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.project-link:hover .project-card {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 193, 243, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
    padding: 20px;
}

.project-title {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #242424;
    text-align: center;
    margin: 0 0 8px 0;
    padding: 0 20px;
    line-height: 1.3;
}

.project-date {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #636363;
    text-align: center;
    margin: 0;
}

.project-link:hover .project-image img,
.project-card:hover .project-image img {
    opacity: 0.3;
}

.project-link:hover .project-overlay,
.project-card:hover .project-overlay {
    opacity: 0.7;
}

.project-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-content h3 {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin: 0 0 8px 0;
}

.project-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #636363;
    margin: 0;
    line-height: 1.4;
}

/* About Section */
.about-section {
    position: relative;
    top: 240px;
    width: 1240px;
    max-width: 100%;
    margin: 0 auto 0px auto;
}

.about-section .section-title {
    margin-bottom: 0px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-card {
    background-color: #fffefe;
    border: 1px solid rgba(99, 99, 99, 0.2);
    border-radius: 4px;
    height: 272px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.about-card {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.about-card:hover .project-image img {
    opacity: 0.3;
}

.about-card:hover .project-overlay {
    opacity: 0.7;
}

/* About Me 서브텍스트 */
.about-subtitle {
    text-align: left;
    margin: 00px 0 50px 0;
}

.about-subtitle p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 24px;
    color: #636363;
    font-style: italic;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem; 
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    text-decoration: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    font-size: 1.2rem;
}




/* Responsive Design */
@media (max-width: 1600px) {
    .header .container {
        padding: 0 20px;
    }
    
    .nav ul {
        gap: 30px;
    }
    
    .main {
        padding: 0 20px;
    }
    
    .header-section,
    .skills-section,
    .projects-section,
    .about-section,
    .contact {
        width: calc(100% - 100px);
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1400px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .header-section,
    .skills-section,
    .projects-section,
    .about-section,
    .contact {
        width: calc(100% - 60px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }
    
    .main-title h1 {
        font-size: 48px;
    }
    
    .description {
        font-size: 20px;
        line-height: 28px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-card {
        width: 100%;
    }
    
    .about-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .nav a {
        font-size: 14px;
    }
    
    .header-section,
    .skills-section,
    .projects-section,
    .about-section,
    .contact {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .header-section {
        top: 50px;
        gap: 30px;
    }
    
    .skills-section {
        top: 250px;
    }
    
    .projects-section {
        top: 400px;
    }
    
    .about-section {
        top: 450px;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .main-title h1 {
        font-size: 32px;
    }
    
    .description {
        font-size: 18px;
        line-height: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .availability-button {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .availability-section {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        height: 200px;
        width: 100%;
    }
    
    .about-card {
        height: 200px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title h1 {
        font-size: 24px;
    }
    
    .description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .intro-content {
        gap: 20px;
    }
    
    .header-section {
        gap: 20px;
    }
}

/* Footer */
.footer {
    position: relative;
    top: 400px;
    width: 100%;
    padding: 40px 0;
    border-top: 1px solid rgba(99, 99, 99, 0.2);
    margin: 50px auto 0 auto;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-contact {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #636363;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-divider {
    color: #9b9b9b;
    font-size: 14px;
}

.footer-content p {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #636363;
    margin: 5px 0;
    line-height: 1.4;
}

.footer-content p:first-child {
    font-weight: 400;
}

.footer-content p:last-child {
    color: #9b9b9b;
    font-size: 12px;
}

/* Footer Responsive */
@media (max-width: 1600px) {
    .footer {
        width: calc(100% - 100px);
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1024px) {
    .footer {
        width: calc(100% - 60px);
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .footer {
        width: calc(100% - 40px);
        top: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-content p {
        font-size: 12px;
    }
    
    .footer-content p:last-child {
        font-size: 11px;
    }
}

/* Contact Section */
.contact {
    position: relative;
    top: 400px;
    width: 1240px;
    max-width: 100%;
    margin: 0 auto 10px auto;
}

.contact .section-title {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #000;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin-bottom: 16px;
}

.contact-info p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    color: #636363;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: #ffffff;
    border: 1px solid rgba(99, 99, 99, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.1);
    border-color: #ffa2c1;
}

.contact-icon {
    font-size: 20px;
}

.contact-link span:last-child {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid rgba(99, 99, 99, 0.2);
    border-radius: 8px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 24px;
    text-align: left;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 1px solid rgba(99, 99, 99, 0.2);
    border-radius: 8px;
    background-color: #ffffff;
    color: #000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B9D;
}

.contact-form button {
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    background-color: #ffa7c5;
    color: #ffffff;
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #e55a87;
    transform: translateY(-2px);
}